'Copy this to any public Module 'Option Explicit ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Public Const...
Hello, I made a function in order to select deferent numbers between 1 and 16 that are different from each other. Dim I, k, a, l, n(500) As Integer For k = 1...
Konstantinos Randomize That's your problem. Add the word Randomize before your loop starts. The reason why you are getting the same sequence is because you are...
Jean-Pierre jamous
jpjamous@...
Dec 1, 2004 9:20 am
18216
try this code Dim I, k, a, l, n(500) As Integer Randomize() For k = 1 To 10 a = 0 While a = 0 n(k) = CInt(Int((16 * Rnd()) + 1)) a = 1 If k > 1 Then For l = 1...
Thank you very much, you give me clear idea about adaffecurent. can you help me in an other problem, i want to show the database record in MS Flex Grid, how...
Thank you very much, you give me clear idea about adaffecurent. can you help me in an other problem, i want to show the database record in MS Flex Grid, how...
Folks, I appreciate all of those who answered my questions earlier. However, another question popped up. I'd like to design a form that would display a combo...
Jean-Pierre jamous
jpjamous@...
Dec 1, 2004 11:42 am
18221
Try doing thig: Dim SqlStr as String Dim Rs as ADODB.Recordset SET Rs= New ADODB.Recordset SqlStr="SELECT * FROM Table1 WHERE...
hello friends, i find one error in my visual basic project. the error is "database could not update;currently locked" when i pass delete, update query . ( i m...
Is anyone else opening the database in Access while you are trying to execute your SQL statement? You may get this error in this case, as the person that has...
You can not and should not write directly to a port with VB. That function is for device driver programmers only. Win XP, Win 2K are secure OS's and should...
Hi, Can any one tell me how to generate musical notes by pressing keys on the keyboard in VB6. I would like to have the code for generating various notes like...
let assume you have a variable "rec" as adodb.recordset after setting this variable(configuring and opening) do this: set mshflexgrid.recordset=rec.recordset ...
Hi.. What datatype you declare on your table1?..is it date type or string type?...also..please post the result of some record so i can help.. Drumric01 From...
Thank you for your help. what about serial and parrallel ports and usb port. I know only "mscom" component. Do you know any component for parallel or USB...
NOTE: "#" <--- this pound sign is use for the jet engine Let Assume you declare 'arrivaltime' as date/time datatype in table1 in Access Database Your Query...
Note: In order for you to manipulate Access database..try to check your connection.Your connection should also release the admin password to open the database...
hi, The details from "Mike Serrano" is worked fine for my Issue. Thanxs for the help. Once again i thank all the group members for solving my problem. Regards ...
I'm from KSA ( Kingdom of Saudi Arabia). and i hope some one will answering my problems and if it is not clear please asking Funy Girl... MUL-Mulyono...
Hello! At school we are working on a project that involves showing match fixtures for a games competition. With my program I was hoping to use a number of...
Hey Sorry JP but the code is in VB 6.0 and not in VB.NET, i have never worked on VB.NET till now, also there is no common dialog box in VB.NET what you have...
Sounds like you are trying to write to the printer. There are ways to do that. ... From: Mosa shahed To: visualbasic6programming@yahoogroups.com Sent:...
Hello, First of all i could not understand your problem, you said that you want to rename all the files in a particular directory, if you want to do it...
Did you tryed to create the textbox, label, etc inside the frame, so if you hide the frame all the control are hided too or if you set the enable propertie to...