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

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

speed2002

Member List

ChuckM
johtib
Amir Steta
Csharp.NetUser
Madhu Ponduru
ponu
Vasudev
Muhammad.Umair
pankaj_singh
Fritzenhammer
neosamz
Kangaloosh
scorpion_anshul
jkelaha1
Milltimeir
vesuvius
Testking
vbcoderwquestion
Diego F.
susqu
Only Title

speed2002's Q&A profile

  • Windows Forms Changing Mouse Cursor

    Hello ALL, I want to change my mouse cursor when I move my mouse on a control or when the control gets the focus Plz help me regarding this Anil K Dhiman Moved to Windows Forms General Just handle the mouse move event of your control and the the Focused property, when this is true change your mouse cursor. ...Show All

  • Windows Forms An error occured while parsing EntityName

    HI, there! I get this error for every windows form I try to open in the designer of VS2005 Professional - C#, for almost every .NET Framework 2.0 sample project downloaded from www.windowsforms.net; when I create my own projects, everything works just fine; what could be the problem Thanks in advance! An error occurred while parsing EntityName. Line 2, position 66. Hide      at System.Xml.XmlTextReaderImpl.Throw(Exception e) at System.Xml.XmlTextReaderImpl.Throw(String res, String arg) at System.Xml.XmlTextReaderImpl.ParseEntityName() at System.Xml.XmlTextReaderImpl.ParseAttributeValueSlow(Int32 curP ...Show All

  • SQL Server page number & records number

    1. how to show page number & total page number in report body 2. how to show total records number For #1: Create a text box. For the value, enter the following: ="Page " + Globals!PageNumber.ToString() + " of " + Globals!TotalPages.ToString() For #2: If you just want to show the number of rows in a table for example, then create a text box, and enter the following: =CountRows(Fields!FieldName.Value) ...Show All

  • Windows Forms Error in designer when adding label to FlowLayout Panel

    I tried to insert a label control in front of a combo (not sure it matters) and I got Visual Studio popping up repeatedly a message box: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index and can't get out of it, only solution is to kill visual studio. ok it's repeatable: I have a form with a flow layout; top down on it in that flow layout I have a data grid, 2nd flow layout and third flow layout both left to right in the 2nd flow layout I have a combo box and check box with flowlayout centered left/right on form. (the third flowlayout has a button anchore ...Show All

  • .NET Development Switching Connection strings

    In my app_code folder I create a dataset (customer.xsd). The wizard prompts to create or choose a connection string. Now, I have two strings in my web.config file - one for production machine, one for dev machine. In my code, I DIM a New datatable and a tableadapter for my dataset. I then call the getdata() method that the tableadapter wizard created for me. However, I can find no property for connection. In VS2003 I used to set an application variable in global.asax.vb that determined which string to use based on Context.Server.MachineName. I could then use that app variable to set the connectionstring property. Can't do that here. ...Show All

  • Software Development for Windows Vista problem installing vista ctp 5308 - how to build a boot disk ?

    Hi, I have a clean build windows XP machine that I am trying to install Vista CTP 5308 onto. I have downloaded the image and manage to burn to DVD but having entered the product key I get an error message "The procedure entry point DecodePointer could not be located in dynamic link library KERNAL 32.DLL." Any ideas how to resolve this Alternatively I'd like to simply build a boot disk with the image and run from scratch... but I don't know how to build a boot disk from the downloaded image Can Nero or Roxio do this for me Thanks Phil I am having the exact same problem, I h ...Show All

  • Visual Studio Team System Web Service Solution not building correctly

    I cannot get my team builds that contain a Web Service Project to build correctly. To test this, I created a new Team Project (with all defaults) with a brand new Solution that contain a Web Service project (with all defaults). Then I created a Team Build (with all defaults). When I run the build, there are no errors - in fact it reports success, and it processes the solution, but my project never is built correctly.  Specifically, I AM NOT getting the  Binaries\Release\_PublishedWebSites folder where the bin folder that contain the dll for the webservice and asmx files should be. I ...Show All

  • .NET Development C# - create a datbase and update information

    I have been a Visual FoxPro programmer for many years (Bad Luck!) I have created a simple application. Created a database with 1 table (Customers). Created a dataset from this Dragged and dropped the controls from the dataset onto the form which dropped the table adaptors etc below the form. It set up the controls correctly Adding and changing data to the form all works and saves the data to the data set It will not save it back to the database This is all done using the basic programming help from UsingVisualStudio.Com If I go to the database and click on show Table Data I can add and edit the datbase direct I am assumi ...Show All

  • Visual C# the filename, directory name or volume label syntax is incorrect.

    I have been trying to start a new project in Visual C# Studio 2005 Express and keep getting the error:  the filename, directory name, or volume label syntax is incorrect. (Exception from HRESULT: 0x8007007B) I have checked my volume label (WINXP) and the directory (E:\VS2005\) and even the filename that i have entered (MyProject) and can find no invalid characters or syntax in any of these.  Yet each time I try to create a new project, I get this error.  I have even changed the directory in the Options (from the default, much longer directory to the one above and several other alternatives) and no effect.  I downloaded t ...Show All

  • .NET Development Multiple connections to an interface

    When I was writing C++/COM in VC 6, we implemented a scheme where a COM server would expose a main interface that would create a secondary interface attached to a communication thread and pass a pointer to this interface back to a client that called in on the main interface. We did this so that there would not be multiple clients calling on the primary interface and be potentially blocked until a previous call on the main interface completed. This scheme worked very well. Now, I'm using C# and .NET remoting to build a "Windows Service" server that will fire an event when it is through processing data - the purpose of the event ...Show All

  • Visual Studio Team System Virtual User Synchronization Point

    Is there a way to have virtual users wait at a given line of code until a certain number of users are doing so and then let all waiting user continue I want to test multiple users performing the same action at the same time with an application under load. Thanks, John Hey Bill, Thanks for the input. You are probably right on all accounts. Many factors will slow one request or another after they leave the agent. Since we will not get the agent license in time I will not have a choice but to test with 1 processor. I guess the multiple agent / rig setup eliminates those nagging questions. Thanks again for ...Show All

  • .NET Development stub + skeleton

    just finished axis User Guide with a few questions : - there are 2 ways to deploy / call a web service 1) (without using / generate stub + skeletons) --> example1 in axis samples --> call web service using --> Call call = (Call) service.createCall(); 2) (generate stub + skeletons using WSDL2Java) example6 in axis samples --> call web service using --> WidgetPriceServiceLocator().getWidgetPrice() QUESTION 1 : what are the difference the 2 ways --> deploy / calling a web service QUESTION 2 : is the 2nd way (using stub) better since just run WSDL2Java then i can call web service in my clien ...Show All

  • .NET Development Most efficient way to serialize an object into an XmlDocument or an SqlXml

    I have a serializable .Net object that I would like to serialize either in a XmlDocument format or in a SqlXml format. There are many dirty way of doing that (using the XmlSerializer and a MemoryStream is one of them). I would like to know what is the "recommended" solution in that case Actually generating the XML markup to parse it again seems very inefficient to me. What would you suggests Thanks in advance, Joannes http://www.peoplewords.com If you're concerned about efficiency use a binary formatter. XmlSerializer is the preferred method for serialization of objects to xml data. There are some ...Show All

  • .NET Development Please help me develop a system utility using .net

    I formerly use Win32 API to develop my system utility application. But I should know how to access the system functions like Win32 API based on .NET. Anyone can help me how to do Which namespace I should refer to You can call unmanaged code using the [DLLImport] attribute. http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfsystemruntimeinteropservicesdllimportattributeclasstopic.asp ...Show All

  • Windows Forms Force XP Themes usage (even user turns it off in WinXP settings )

    Hi all, As everybody knows we can use XP Themes to change visualistion to more futuristic (like Win XP does). I use <b>Application.EnableVisualStyles</b> and it works fine. But my question is: Is this possible to force using themes even user turns it off in Windows settings  I optimised my forms to use themes, and I like new look very much. If user turns ...Show All

©2008 Software Development Network