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 strongm 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: *

  • Users: hallian92
  • Order by date
  1. hallian92

    How to insert new Records in a table using SQL in Access97

    Hi, It's not adding new data in my table following is the code: For Number = 1 To 10 DoCmd.RunSQL "INSERT INTO Items (Notes) VALUES ('Harry');" Next Number is there a problem in the code above. Any help is appreciated. Thanks
  2. hallian92

    How to insert new Records in a table using SQL in Access97

    Hi, I am using Access97 and am trying to insert new Records in my code. Before adding new records to table I am doing some update in the same table and after that I am inserting the new records it's in the same sub. I am using the following to add the new records: DoCmd.DoMenuItem acFormBar...
  3. hallian92

    change hexadecimal value to double

    Is there a way that I can convert the following hexadecimal value into double: String s = "16#1234#"; As converting this to long I am doing this if (s.startsWith("16#") && s.endsWith("#")) { extractedValue = s.substring( 3, s.length()-1 ); longValue =...
  4. hallian92

    How to stop Threads!

    Hi, I have a main program in which I create five more threads. When these threads are created I show a Dialogbox with a ProgressBar for each of the threads status. Means if I have five threads I show five ProgressBars one for each thread that shoes the status of the threads completion. I also a...
  5. hallian92

    How to Load a Properties File from JAR File at runtime

    HI, How can we load a properties file from a jar file at runtime. Have a Properties file that's in a jar file when the application starts wants to read the values in the properties file. How can we do this. Any help is appreciated. Thanks
  6. hallian92

    Sort Arrays in an ascending order

    Hi, Can anyone tell me how to sort an Array of integers in an ascending order. I have an array of integers and I want to sort them in an ascending order in the same array. Is there any built-in function that does that in vb 6.0. I really appreciate for any help. Thanks
  7. hallian92

    How to reterieve the AM or PM part of a time when using Now function.

    Hi, Does anyone know how to reterieve the AM or PM part of a time when you get the current PC time. I know the following gets the day,month,year,hour,minute and second but how can I also reterieve the AM or PM part also. Any help is appreciated MyDateTime = Now 'get the current...

Part and Inventory Search

Back
Top