Search results for query: *

  • Users: riversr
  • Content: Threads
  • Order by date
  1. R

    combobox hades!

    I'm sure I'm making this more difficult than it is but I'm stumped. I want to populate a combobox with two items from a database table. The table has a name and an associated id. I want to display the name in the combobox dropdown and then use the associated id in the code. I've tried everyway I...
  2. R

    Old DLL access from .Net

    I have a vendor provided dll that I need to use in a VB.net appliction. I have had no succes in gaining access to the dll. When I try to add a reference to it I get this message: A reference to c:\program files\xxxxx.dll could not be added. Please make sure the file is accessible and that it is...
  3. R

    Network programming

    I need to write a small vb.net application that will send a request to a https web server and receive a XML string back. The request will look roughly like this: https://www.webserver.com/dir1/dir2/filename.php?param1=text&param2=text&param3=text The string that it gets back will be XML. It...
  4. R

    Adding Command Parameters

    I'm trying to learn how to use command parameters to do my SQL commands and seemed to have hit an impasse. I created the following code: cmd.CommandText = "Insert into PINS (PIN, ControlNumber, BatchID, Consumed) values (@PIN, @Control, @ID, @Consumed)" cmd.Parameters.Add("@PIN"...
  5. R

    Early binding problem

    I'm a relatively new VB.net programmer so I hope there is not an obvious answer to my problem that I am missing. I created an Arraylist that contains instances of a structure. I want to use one data item from an instance of the structure to call a function. The return value from the function...
Back
Top