Software Development Network Logo
  • IE Development
  • Microsoft ISV
  • .NET Development
  • VS Team System
  • Windows Forms
  • Visual Studio
  • Visual Basic
  • Visual C++
  • Game Technologies
  • SharePoint Products
  • Smart Devicet
  • Windows Vista
  • Visual C#
  • Visual FoxPro
  • Audio and Video

Software Development Network >> QuantumMischief's Q&A profile

QuantumMischief

Member List

robinjam
R Raghu
Mike Lapierre
Barguast
Ravenheart27
spydude777
Jerry Ou
T Pedersen
djsavlon
Peter Aspect
Avishesh
CrashPlaxton
Krutika
vistadb
Cathie 64
monolith1986
Al33327
crazy_kebab
Martin Bennedik
GethWho
Only Title

QuantumMischief's Q&A profile

  • Internet Explorer Development IE7 only works on my user account

    hello IE 7 works fine on my computer account but when my sisters try to use it on their accounts it shows up as a blank screen and gets stuck on "connecting" and then it crashes and we have to restart the PC can anyone help me this is really frustrating i even tried installing IE7 on their accounts individually but that lead to the same problem ...Show All

  • Smart Device Development Updating listview frequently

    Hi, I have a list view to support presence, it has a buddy and his status using (Session Initiation Protocol). I want to update it whenever someone changes his status. What is the best way to update it Depends on number of records and how often you need to update it. If you have 10-20 records and need to update it few times a minute, just use LV manually. If you have 1000 records, LV might be a little slow. By the way, how it's relevant to DataTable DataGrid has nothing to do with DataTable even though DataTable is commonly used as data source for it. ...Show All

  • .NET Development Shutting down network computers?

    I suspect that I once again have someone leeching of my Wireless router again and I can't connect and lock it for some reason. So I thought perhaps I could shutdown the computer who is leeching off my network As a lesson :P There are probably a lot of software out there that could do this but it would be nice to learn how I could create such software. really you need to implement security on your wireless router, such as disabling SSID and adding encryption as well as MAC Address filtering. This would all be done on your wireless router configuration page. In terms of developing it in C#, not entirely sure. you can shutdown a computer by using the Windows 2000 (I think or at least XP) and highe ...Show All

  • Visual Studio 2008 (Pre-release) Bug in command

    The doc says that the default target for commands is the element that has the focus. However, in the following example, the button without an explicit CommandTarget is always disabled. Is this a bug <StackPanel> <!--this is always disabled--> <Button Command="{x:Static ApplicationCommands.Cut}" Content="Cut"/> <!--this is always enabled when there is a selection in the text box--> <Button Command="{x:Static ApplicationCommands.Cut}" Content="Cut" CommandTarget ="{Binding ElementName=foo} "/> <TextBox Name="foo"></TextBox > </StackPanel> Cheers Discussed here http://forums.microsoft.co ...Show All

  • Windows Forms MessageBox problems

    Hi all! I have a problem when displaying a MessageBox. The problem is that in the box does not appear any text, neither the caption nor the message nor the button text...what is happening the code is: MessageBox.Show("The system is not connected.","Robstar", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); thanks in advance!! Are you using VirusScan Enterprise 8.0 Geert Verhoeven Consultant @ Ausy Belgium My Personal Blog ...Show All

  • .NET Development Isolated Storage not FIPS-compliant

    When we moved over to Version 2 of the Framework, we started getting errors regarding FIPS compliance in the encryption algorithms. We were able to fix this by changing the encryption provider we were using in our own code, but it seems that the CLR uses SHA1Managed within IsolatedStorage. This is not FIPS-compliant, and we are getting exceptions whenever we call GetUserStoreForDomain(). I have not found a way to force Isolated Storage to use another encryption provider. Is there a way to do so If not, what is the workaround We are unable to turn off the FIPS-compliance setting, for security reasons, so our only alternative may be to not use Isolated Storage. What is the recommended alternative Thanks in advance for your help. ...Show All

  • Visual Studio Team System How to find all the occurances of a particular type in the code?

    Hi, I am using FxCop 1.312. In my custom rule, I want to achieve 2 functionalities – 1. Finding deprecated method usages 2. Finding deprecated type usages. I could achieve the first but I am not able to find all occurrences of type. For instance, if the type MyClass is deprecated, I should be able to find all the instances of MyClass, i.e, MyClass x = new MyClass(); x.MyMethod(); SomeOtherMethod(x, anotherArugument); Also, if any other classes whose base type is MyClass and their usage. Please help me in this regard, as early as possible... Thanks in advance, regards, Dhatri. To check for all occurences of a type in your code you will need to overload the Check(Member ...Show All

  • Visual Studio Team System CA1305: How to correctly set string.format(..) lines.

    Heya folks, I'm getting a lot of CA1305 warnings when i use the string.format(..) without an IFormatProvider. Of course i can suppress this but i try very hard to never supress any warnings. So lets look at some code to see what is the best practice with string.format(..), please. 1) addressData.Id = Convert .ToInt32(dataReader[ AddressData ._databaseTblAddressIDAddress]); 2) addressData.PostalCode = Convert .ToString(dataReader[ AddressData ._databaseTblAddressPostalCode]); 3) throw new InvalidOperationException ( string .Format( "The addressData instance has in invalid ID [{0}]." , address.Id)); Ok - three examples all throwing warnings. What is the best practice to remove these warnings What options are there t ...Show All

  • Internet Explorer Development How do I get the notification when the active tab is changed?

    I am developing a browser extension that uses the WebBrowser object. Since there are separate WebBrowser objects to each tab in IE7, I need to know which tab becomes active during tab switching. How do I get a notification for this Thanks, Mojo Hi Mojo, Where are you trying to access this information from There are no direct programming interfaces for tabs in IE7 but you shoudl be able to automate access using the accessibility interfaces. Thanks -Dave ...Show All

  • Visual C# Is there any function for converting Currency ( Numbers to Words )

    Hi groups, I need some idea/ways are there for creating currency conversion. I mean if i give inout as numbers ( say 1500 ) is should convert into text as [ One thousand five hundred only. ] Hope someone already implemented this type of functions for reports etc..pls share your logic and code if any. Maheshkumar.R wrote: Hi groups, I need some idea/ways are there for creating currency conversion. I mean if i give inout as numbers ( say 1500 ) is should convert into text as [ One thousand five hundred only. ] Hope someone already implemented this type of functions for reports etc..pls share your logic and code if any. ...Show All

  • Windows Live Developer Forums Windows 2000 network, which messenger works best with exchange?

    We have a Windows 2000 network, which messenger program works best with exchange 2000 Outlook Express displays the user list inside the program screens, but we use Outlook, not Express. We would like a messenger that communicates with the office employees only through exchange. Which is the product and version we should be using ...Show All

  • Visual Basic ICustomTypeDescriptor and the property grid.

    I'd like to extend the property grid to do things such as allow me to change DisplayNames of properties at run time and to sort properties into the order that I want. I understand that I should implement ICustomTypeDescriptor but am getting nowhere. For instance the following code doesn't have any effect: <System.ComponentModel.TypeConverter( GetType (SpellingOptionsConverter))> _ Public Class SpellingOptions Implements System.ComponentModel.ICustomTypeDescriptor Public Function GetAttributes() As System.ComponentModel.AttributeCollection Implements System.ComponentModel.ICustomTypeDescriptor.GetAttributes Dim r As New System.ComponentModel.DescriptionAttribute( "UUU" ) Dim f As N ...Show All

  • Windows Search Technologies Internet Explorer Tab settings not respected

    Hi, Right now, WDS does not respect the Internet Explorer 7 setting to "Open links from other programs in: A new tab in the current window." Instead, web searches are always opened in a new IE window. Is this going to be fixed Thanks, Maverick ...Show All

  • SQL Server TRyign to extract Top 3 records using Partitioning

    Hello, I have a table containing 3 columns Department Name, RiskScenario and Cost. I am trying to create a data extract that contains the top 3 Risk Scenarios (sorted by Cost) per Department. I tried using this sql statement in MSQuery but it doesn't work. Any ideas where I'm going wrong or if there is a simpler way to do this Select * from ( Select DepartmentName, `Risk Scenario`, Cost, row_number() OVER (PARTITION BY DepartmentName order by Cost) rn FROM 'Departmental Risks`) where rn <=3 Please help. Just can't figure this out! Meera Select * from ( Select DepartmentName, `Risk Scenario`, Cost, rank() OVER (PARTITION BY ...Show All

  • Windows Forms WebBrowser control shows HTML code

    Hello, I've a project where i'm assigning a HTML string to the DocumentText property of the WebBrower. On most PCs there's no problem with it, but there are PCs which show the actual HTML code instead of the webpage. Any idea's what's the reason and a possible solution :) Regards, Aussie Getting the machine completetely up to date worked for me! I doubt there's a away around this without installing SP2. J. ...Show All

©2008 Software Development Network