I am currently writing a program to input data into a database. I need to
be able to dynamically create labels and textboxes corresponding to the
number of...
That's an idea, I will consider it. The problem with a flexgrid is, it is
for viewing, not for editing. This form is only for adding info into the
database....
I wouldn't touch a datagrid with a 10 foot pole. Other than using a textbox
how would you edit with a flexgrid. The only thing I knew it was good for
was...
I guess you're right. You don't want to do that text box trick in the MSflexgrid. We've talked about this before. That exact thing is what drove me to...
That's okay Don, thanks for your suggestion anyway. I have a solution, well
sort of. I still have a problem, but not the same one. Here is what I
have: ...
Do you know the max number that you will need? If you knew that you could put them all on the form and make them visible or not visible as you need them and...
I know the max number needed NOW. That number might increase later. I
would prefer not to have to go back and redo everything later. If I can
only redo the...
This should do the job but you're on your own for the details. Make a label array and a text box array: Add one of each to your form and then right click it to...
I have solved my problem. For those interested, here is my code I was using
It wouldn't let me unload the components because I needed to unload them
in the...
Hello Rick, Here is the solution: declaration: dim l as label or if you want the events of the controls then dim WithEvents L as Label initialising the l...
Gopal
grrohra@...
Feb 2, 2004 6:16 pm
14280
Hello, We have an immediate requirement for our client in Singapore for Oracle Developer. If you are keen towards this opening kindly mail across your CV at...
Hi Rick, today is your lucky day. I don't normally visit this group, but today I made an exception. And your posting happens to be the one I read first. I...
There is only one problem with that. He added the controls, but he didn't
remove them. I finally solved the problem of adding them, but I couldn't
unload...
Tried that too. Rick Rose ... From: visualbasic6programming@yahoogroups.com Date: 2/3/2004 4:28:47 PM To: visualbasic6programming@yahoogroups.com Subject: Re:...
Rick, remove the codes from the Form_load event and Place the codes in a private sub that can accept an integer variable x. Each time you move on to another...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the visualbasic6programming group. File :...
visualbasic6programmi...
Feb 4, 2004 3:09 am
14287
Hi Rick, I think i know the solution to yr problem. If u are working with ado, then ado has a property called field count which gives u the number of fields in...
Hi, I dont know how you create data reports without dataenv. Please tell me more about it. ie to create data reports without dataenv. Regards. Naveed. khalo...
Jake, I have tried your suggestion, but it still won't unload the controls
since the remove sub was called in a click event. Naveed, I have no trouble creating...
hay Shawn J. Yates please send me details what you want to do with that help of that dll. regards harwinder ... for C++, ... says to look ... There ... figure...
Hi Rick, Try the following and see what happens: 1. Open a standard exe 2. Put a Textbox on the form. 3. Set the index of the Textbox to 0 4. Now put two...
That works, so why doesn't it work with a combobox click event? That's what
I need. Rick Rose ... From: visualbasic6programming@yahoogroups.com Date: 2/4/2004...
Apparently: In some situations (best known to Micro$oft) you are not allowed to unload a form or a control on a form. This error has the following causes and ...
I really didn't want to have to click another button, but it looks like I
will have to. Does anybody know how to find out how much memory a program
actually...