Software Development Network Logo
  • Architecture
  • Windows Live
  • Windows Vista
  • Visual Studio
  • Windows Forms
  • .NET Development
  • Visual C#
  • Visual J#
  • Visual C++
  • Game Technologies
  • Visual Basic
  • VS Express Editions
  • Visual FoxPro
  • Microsoft ISV
  • Smart Device

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

SickOfMicrosoftShit

Member List

Sameer C T
Stuart Massey
danielches
TavKat
Luis Esteban Valencia Munoz
Tonny Petersen
Oops Jun
awani
Ferenc Toth
Karl Tarbet
meo1985
Ewino
Roger Haight
richrobin5
bluej41
Old_newb
jciurlin
Tim Raleigh
gmthut
kcon
Only Title

SickOfMicrosoftShit's Q&A profile

  • Windows Forms Getting selected rows from IList binded DataGrid

    I have binded a datagrid to a list of objects. This list implemenst the IList interface.  I would like to create a function that returns a list of these objects that are currently selected in the Datagrid. Something that can be trivialy done in Fx 2.0 as shown here . However, I am using v1.1 for now. I can return the currently selected item like this: public static MyObject Current(DataGrid theGrid)  { CurrencyManager cm = ...Show All

  • Visual Studio Team System Static analysis question

    I want to help a coworker in tracking down a spurious crash by using the Statically Analyze commmand in Visual Studio 2005, but I decided to give it a test drive first. On this test, I expected it to report a use of an uninitialized variable.  Is this correct expectation of the /analyze switch   I'm using VS 2005 B2. void foo( int & x ) {    printf( "%d" , x ); } int main() {    int uninitialized; &nbs ...Show All

  • Windows Forms ClickOnce updates all assemblys!

    Hi, I am now trying to deploy with Click Once, and have run into 2 problems/questions. I have 6 projects 1 win and 5 class libs. I seem to think that with Click Once I should be able to make a change to library X and redeploy, in turn the user would only need to download that one assembly. The problem I am having is, a change to 1 library forces the user to download the entire application again. I must just be missing something, what is the wa ...Show All

  • Visual C# Casting when type to cast to is only known at runtime

    Lets say I have 2 types - TypeA and TypeB.  There are times that I need to handle these types generically as objects so I can cast to an object no problem.  However when I need to cast back to a specific type from an object I have some issues.  I can do the following OK if I know at design time the type of the object: (TypeA)SomeObject However, if I only know the type of the object at runtime, how do I define the cast at design ...Show All

  • Visual Studio Common Settings for all the projects in a Solution

    Hi, I have an issue, if you could find time then can you please suggest some opinion Issue: I have a dotnet solution and under that a no. of projects are existing. I want to control project settings(like buid type, Enable/Disable Framepointer etc..) for each project from one common place (may be xml file or anything else). When ask to build solution it should read settings from that file and apply to each project and then it should build. One w ...Show All

  • Windows Forms Saving Data of RichTextBox

    Hi I am using the richtext box for typing the contents of report. My report is saving fine and no problem but if the user enters special characters such as {" "@ etc , my report does not save and gives error. I am using an S ...Show All

  • Visual C++ linkLabel_LinkClicked

    With managed C++ what would I have to type on this linkLabel_LinkClicked code in order to make my link go to a website of my choice #pragma endregion private : System::Void linkLabel1_LinkClicked(System::Object^ sender, System::Windows::Forms::LinkLabelLinkClickedEventArgs^ e) { } }; } yeah I read it and I go t the following errors: ------ Build started: Project: linktest, Configuration: Debug Win32 ----- ...Show All

  • Visual Studio Adding code for some event in VSTA

    Hi, I have incorporated VSTA within my application. I have created and registered the proxy object model for my application. But I am wondering now how to add code in VSTA IDE for some event in my main application. Say I wana show some menu showing Add VSTA code on roght click of a button on my application (this is easy) but how do on clicking this button do I generate some method as Button_Click in VSTA Ide and get it connected to my b ...Show All

  • Visual Studio Express Editions System.Windows.Forms.TextBox,%20 is being added before each substitution

    Hello, I am trying to "make" a web address from some textboxes from my form... I need to get this: http://api.local.yahoo.com/MapsService/V1/mapImage appid=SSVRT_KN1123&city=redmond&state=washington&lvl=10 but I am getting this: http://api.local.yahoo.com/MapsService/V1/mapImage appid=SSVRT_KN1123&city=System.Windows.Forms.TextBox,%20Text:%20redmond&state=System.Windows.Forms.TextBox,%20Text:%20washington&lvl=10 This is ...Show All

  • Visual Studio Team System Error connecting to Team Server

    Hi I have just installed the Team foundation server, and the team foundation client on a new machine. When i go to visual studio 2005, and try to connect to the team foundation server, i receive a strange error dialog containing the ffollowing error: Client found response content type of 'text/html; charset=utf-8', but expected 'text/xml'. The request failed with the error message: -- <html> <head> <title> Ru ...Show All

  • Visual Studio Team System How to suppress instrumentation of dependent projects?

    I have a solution with several projects: web application, web service, library dlls, etc.  In my case, I have one library dll that I do not want instrumented (I'm only referencing a small portion of the code).  However, it appears that if you choose, via the testrunconfig, to instrument one project output then all dependent libraries are also instrumented, even if they are not checked. I would like code coverage to be pe ...Show All

  • Smart Device Development How to convert VC6 project file to EVC4?

    I have vc6 & evc4 installed. I have a vc6 project, and I want to convert the .dsp / .dsw file into .vcp / .vcw file which can be opened by evc4. Is there any toolkit can help me do it, or I'll have to found a new project manually myself Thank you! Hi Lucien, There are no tools to convert from vc6 to ev4, However you can use the VS2005, which can convert from vc6/evc4 to vcproj, the VS 2005 is advanced from both vc6/evc and you have m ...Show All

  • Windows Forms Delete row and updating database through datadset

    Hi, I am using following code to bind the myControl (Some bindable control): DataSet dsTrims = new DataSet (); dsTrims = MyProvider.ExecuteDataSet(System.Data. CommandType .Text, strWhere); this .bindingdataSource1.DataSource = dsTrims.Tables[0]; myControl.DataSource = bindingdataSource1; All the data get visible to myControl when run the application. I can also update row into myControl and this update also tak ...Show All

  • Visual C# easy way to determine if string is one letter

    Hey people. I need to know if there is an easy way to determine if a string is a letter (A - Z) or something else. cause my program is suposed to take different action if the string is one letter (A - Z) or something else. what is the easyes way to do this if (text.Length == 1 && char.IsLetter(text, 0)) {     // text is one letter! } Vijaye ...Show All

  • Visual Studio Express Editions Strange error when trying to create a new project.

    I recently opened a project that I had already created and edited it.  After saving and closing, I went to create a new project, and now I get this error: Access to the path 'C:\...' is denied. I don't understand what is going on, just a few minutes ago I could create new projects.  Also, when I try to open an already existing solution or project file, I get an error saying: Unable to read the project file 'example.vbproj'.  The p ...Show All

©2008 Software Development Network

powered by phorum