Search the web
Sign In
New User? Sign Up
VisualBasic_Official · Visual Basic . VB.net . VBS . ASP.net
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3801 - 3830 of 9530   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3801
Quite a bit :) ... From: Steve Raine To: visualbasic_official@yahoogroups.com Sent: Friday, January 31, 2003 11:55 PM Subject: [Visual Basic] which version? ...
Theron Bird
tbird321
Offline Send Email
Feb 1, 2003
8:55 am
3802
And Both are Obsolete (according to microsoft) http://support.microsoft.com/default.aspx?scid=kb;en-us;223010 ... Service....
chartscanner
Offline
Feb 1, 2003
8:48 pm
3803
Version Details Maybe this will help http://msdn.microsoft.com/vbasic/productinfo/previous/default.asp ... Service....
chartscanner
Offline
Feb 1, 2003
8:53 pm
3804
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@...
Send Email
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 ...
Ronnie Edgar
dot_net_heathen
Offline Send Email
Feb 3, 2003
10:44 am
3806
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...
jimhollandjr
Offline Send Email
Feb 4, 2003
12:08 am
3807
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...
dwyerinca
Offline
Feb 4, 2003
7:43 am
3808
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...
Theron Bird
tbird321
Offline Send Email
Feb 4, 2003
10:19 am
3809
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...
mjcarini <mjcarini@...>
mjcarini
Offline Send Email
Feb 4, 2003
3:20 pm
3810
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...
kquad4
Offline
Feb 4, 2003
3:35 pm
3811
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...
dwyerinca
Offline
Feb 4, 2003
4:29 pm
3812
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...
Martin <mcyrca@...>
mcyrca
Offline Send Email
Feb 4, 2003
5:33 pm
3813
Hi. Use this: '********************************************************************* *** ' Description : Open Interface Database. ' Programmer : Martin...
Martin <mcyrca@...>
mcyrca
Offline Send Email
Feb 4, 2003
5:36 pm
3814
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...
wharmon97 <harmon-w@....
wharmon97
Offline Send Email
Feb 4, 2003
7:08 pm
3815
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...
mjcarini <mjcarini@...>
mjcarini
Offline Send Email
Feb 4, 2003
7:54 pm
3816
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...
Theron Bird
tbird321
Offline Send Email
Feb 4, 2003
10:53 pm
3817
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......
David Matthews
madivad
Offline Send Email
Feb 6, 2003
3:50 am
3818
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...
David Matthews
madivad
Offline Send Email
Feb 6, 2003
3:50 am
3819
Does anyone have a string splitter\tokenizer class for VB?...
Griessmann, David
dgriessmann
Offline Send Email
Feb 6, 2003
1:01 pm
3820
Public Function GetTokenValue$(strToken$, strKeyString$, Optional strDelimiter As String = ";") ...
Thiagarajan Venugopal
thiaguv
Offline Send Email
Feb 6, 2003
1:17 pm
3821
What's the best way to implement this on a form where the input will be from a txtbox and the tokens displayed in a box?...
dgriessmann <dgriessm...
dgriessmann
Offline Send Email
Feb 6, 2003
2:37 pm
3822
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...
Karla Andrew
kquad4
Offline Send Email
Feb 6, 2003
2:45 pm
3823
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...
Griessmann, David
dgriessmann
Offline Send Email
Feb 6, 2003
4:39 pm
3824
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...
Theron Bird
tbird321
Offline Send Email
Feb 7, 2003
4:40 am
3825
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...
Griessmann, David
dgriessmann
Offline Send Email
Feb 7, 2003
12:39 pm
3826
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...
mjcarini <mjcarini@...>
mjcarini
Offline Send Email
Feb 7, 2003
11:55 pm
3827
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...
Theron Bird
tbird321
Offline Send Email
Feb 8, 2003
7:21 am
3828
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...
dgriessmann <dgriessm...
dgriessmann
Offline Send Email
Feb 8, 2003
6:28 pm
3829
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...
sun21170 <sun21170@...>
sun21170
Offline Send Email
Feb 11, 2003
8:21 pm
3830
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...
Thomas Walther
tdw200291
Offline Send Email
Feb 12, 2003
12:10 pm
Messages 3801 - 3830 of 9530   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help