Quite a bit :) ... From: Steve Raine To: visualbasic_official@yahoogroups.com Sent: Friday, January 31, 2003 11:55 PM Subject: [Visual Basic] which version? ...
Hi all, how do i check if the file is open in Visual Basic ? is there any flag or something returned by some object to know the status. I couldnt find one such...
Prasad R
pramu@...
Feb 3, 2003 9:03 am
3805
they have dropped my file which i attached sorry all ... From: Ronnie Edgar Sent: Monday, January 27, 2003 9:21 AM To: visualbasic_official@yahoogroups.com ...
Why? Did you lose track of what you opened? Just put the files in a list as you open them. I still almost never use the FileSystemObject, but most of my stuff...
I have the following problem. I have a vb.net program, which has a sub main procedure and two forms (Form1 and Form2). Sub main loads form1 to ask the user...
Why use two forms... you can do the same and even better with one forms and multithreading. This is a simple example of doing so. txtIterations.text - textbox...
Hi! I have a program that reads from an Access database file. My clients are now requesting some security for their data. I was able to easily add a password...
Could anyone help me with ADO? I am looking for the code to open and read an Access database without the Data environment, using ADO. The code in DAO is : dim...
Thanks so much for the code sample. I will work through it. I have never used multi-threading before, so it is new territory for me. The reason I have two...
Hi. Put a password directly on the database. This is available from an Access menu (can't remember). You will need that password in your program and when...
Like to check an email server for new email extract new email parse the email add it to a database table Do it without 3d party software. Anyone know of Web...
Thanks for your help. I finally found what I was looking for at http://www.freevbcode.com/ The code follows my next question. If write code to read a locked...
You can easily do this by having the processing class raise an event saying that it is completed. This could then be handled by the parent form and thus...
Two things with this. Firstly, I think it should be more along the lines of: Dim myprogress as new form2 myprogress.showdialog() and if you make... hmmm......
To expand on kquad4's question, how do you link a db opened in dao3.6 and have it linked to a dbgrid? I just can not get it to work? Any ideas? Dave Hay, New...
Where data1 is a on your form (data) and dlbgAlias is a msflexgrid with it's datasource as db1. To do this, you have to have your service pack up to date (if...
Listed below is my code so far. It doesn't work and I can't figure out why. Anyone have a clue? Thanks, Dave frmTokenizer Option Explicit Private Sub...
This is easy... change your code to be: Public Function nextToken() As String Dim tok As String If i < UBound(stokens) Then i = i + 1 tok = stokens(i) Else tok...
Thanks, it works great! Now I have only one more problem that I can't figure out. This program works great if a user types in x + y = 6 but how do I get it to...
Please tell me how to add the password to the db.Open statement in order to open a locked Access database. Thank you. Dim db As New ADODB.Connection Dim rs As...
The key to this is to develop your own type of parser using a variety of tokens and not simply spaces as your tokens. If you would explain your purpose I can...
What I need it to do is parse likes this: Input: x+y=56 Output: x + y = 56 Input: x + y = 56 Output: x + y = 56 Input: This is a test Output: This is a test...
Hello All, I want to know if a file by the name of 'OTPProperties.txt' exists on my computer and if it does then what is its absolute path. Can I do this in...
hi sunil, i'd recursively search the computer using something like this. This uses the VB scripting runtime dll. hope this helps, -tdw Public Function...