Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. karateboy02

    Get Remote User Name

    Let me just give some background on the issue at hand. I am an IT worker for a manufacturing facility of roughly 1000 associates. We have several different types of hardware that we loan out from time to time for people traveling to different places or for temporary use around our plant, one...
  2. karateboy02

    ADODC Update Issue

    adodc1.recordset.Fields(textbox1.DataField).Value="0" adodc1.recordset.update This works perfectly, thank you very much.
  3. karateboy02

    ADODC Update Issue

    If I do a refresh then it will just pull the data already in the record which is not the data I want and does not do an update. Also I cannot move to another record because it is the only record in the recordset.
  4. karateboy02

    ADODC Update Issue

    I am having a problem with an adodc update. I use the adodc.recordset.update command and it works perfectly on every field that is edited by mouse click. It doesn't matter if it is a check box or a text box. However if I change the value in my code such as: If textbox1.text = "1" then...
  5. karateboy02

    Pocket PC Development

    Ah ok. Thanks again for the info.
  6. karateboy02

    Pocket PC Development

    Thanks for the info. Do you know if it would be possible with visual studio 2003 because I do not have a copy of 2005?
  7. karateboy02

    Pocket PC Development

    I am looking for some sort of starting point on making applications for the pocket pc. I cannot seem to find anywhere that has some instruction or anything on how to get started on a pocket pc application. Is this possible with Visual Basic 6?
  8. karateboy02

    SQL Server Help

    Can someone tell me how to write the connection string for a SQL Server and what is used to pass SQL commands to it. I've seen it done before but cannot remember how.
  9. karateboy02

    SQL Commands in Windows Forms

    I am trying to figure out how to send a SQL command to a database from a windows form application. I have added the database using the wizard in Microsoft Visual Studio 2005 but cannot figure out how to send a SQL command to the database or how to display the data it returns. I can move...
  10. karateboy02

    Switching Between Windows Forms

    I figured it out. I was using ShowDialog() to open the new forms when I should have been using Show(). ShowDialog() is for more like ok box type calls so that you can't go back to the original screen without an acknowledgement of some sort. Thanks for the help.
  11. karateboy02

    Switching Between Windows Forms

    In my program I launch a windows form from another windows form. The flow breakdown is as follows. User starts program (a windows form). User clicks on button and launches a second windows form. After the second form is launched I cannot go back to the first form unless I close the second...
  12. karateboy02

    Visual Studio 2003 convert System::String to char array

    I am trying to convert from a System::String to a char array. I have found a code snippet that works in Visual Studio 2005 but when I try to run the same exact code in Visual Studio 2003 I get several errors. The code looks like: System::String *orig = this->textBox1->Text; pin_ptr<const...

Part and Inventory Search

Back
Top