Search Results

Showing results 1 to 40 of 797
Search took 0.04 seconds.
Search: Posts Made By: vb5prgrmr
Forum: Visual Basic 4 / 5 / 6 12 Hours Ago
Replies: 1
Views: 79
Posted By vb5prgrmr
Search the web for watch directory and for a good start look at this thread and follow strongm's links to his code...

http://www.tek-tips.com/viewthread.cfm?qid=1568282&page=1



Good Luck
Forum: Visual Basic 4 / 5 / 6 1 Day Ago
Replies: 1
Views: 73
Posted By vb5prgrmr
GoTo the school or public library and watch how the transactions are made. Write down, step by step, how a typical transaction goes. Talk with the employees there and find out the steps they go...
Forum: Visual Basic 4 / 5 / 6 1 Day Ago
Replies: 3
Views: 134
Posted By vb5prgrmr
Well since OP does not have the source, the OP cannot check references, and I'm betting that the "Error Creating Letter: Cannot Create Object" is our best clue as to what might be going on. I'll also...
Forum: Visual Basic 4 / 5 / 6 3 Days Ago
Replies: 5
Views: 147
Posted By vb5prgrmr
Thanks for the reference AndreRet :)
Forum: Visual Basic 4 / 5 / 6 4 Days Ago
Replies: 11
Views: 408
Posted By vb5prgrmr
dajaci, juniorj has the faster and prefered way in which to pull the singular last record from the database as it only requires the program, the network (if on a network), the database, the hard...
Forum: Visual Basic 4 / 5 / 6 4 Days Ago
Replies: 8
Views: 402
Posted By vb5prgrmr
To begin with, let me reiterate that just because you put a file in the support folder does not mean it will be included with your setup package! You have to manually add the file when creating your...
Forum: VB.NET 4 Days Ago
Replies: 3
Views: 80
Posted By vb5prgrmr
Thirdly, how can you call this thread anything to do with visual basic versions 4/5/6 when it contains .NET code???
Forum: Visual Basic 4 / 5 / 6 4 Days Ago
Replies: 7
Views: 169
Posted By vb5prgrmr
Either rewrite as an ASP application or convert it to activex.



Good Luck
Forum: Visual Basic 4 / 5 / 6 6 Days Ago
Replies: 2
Views: 204
Posted By vb5prgrmr
Abu, I would suggest you start off by getting one of those cheap serial port LED cards and search on the web for it using rs232 (?) cable communications or "vb6 rs232 example"...
...
Forum: Visual Basic 4 / 5 / 6 7 Days Ago
Replies: 3
Views: 268
Posted By vb5prgrmr
Lines 22 and 23 need to be reversed. First open the recordset, then set the recordsource, and finally do the refresh, which reminds me. No need to do the refresh in the loop. After that then you...
Forum: Visual Basic 4 / 5 / 6 8 Days Ago
Replies: 4
Solved: time
Views: 244
Posted By vb5prgrmr
Capture start time into a variable and use datediff function to test the difference returning seconds mod 60 returns minutes mod 60 returns hours. Understand?



Good Luck
Forum: Visual Basic 4 / 5 / 6 9 Days Ago
Replies: 8
Views: 316
Posted By vb5prgrmr
And??? I'm still not understanding but good luck anyways...
Forum: Visual Basic 4 / 5 / 6 9 Days Ago
Replies: 4
Solved: Get drive icon
Views: 266
Posted By vb5prgrmr
What do you think I pointed you to with that search and suggested sites?
Forum: Visual Basic 4 / 5 / 6 9 Days Ago
Replies: 8
Views: 402
Posted By vb5prgrmr
Are you using the PDW? (Package and Deployment Wizard) If so, when you are walking through the steps, there is a screen that allows you to add files (Files are not added automatically when you put...
Forum: Visual Basic 4 / 5 / 6 9 Days Ago
Replies: 8
Views: 402
Posted By vb5prgrmr
Where did you tell your setup package to install your database? Because I believe the path you used to point to your database is incorrect and hence the error you are recieveing...



Good Luck
Forum: Visual Basic 4 / 5 / 6 9 Days Ago
Replies: 1
Views: 262
Posted By vb5prgrmr
Private Sub Command1_Click()
Dim F As Form
Set F = New Form1
F.Show
End Sub




Good Luck
Forum: Visual Basic 4 / 5 / 6 9 Days Ago
Replies: 2
Views: 221
Posted By vb5prgrmr
In form1 create a public sub so when you hide form2 you can call it...

Form1.MyPublicSub
Me.Hide

then in the form1's mypublicsub you instruct whatever data access method you are using to...
Forum: Visual Basic 4 / 5 / 6 9 Days Ago
Replies: 2
Views: 209
Posted By vb5prgrmr
In visual basic 6.0, if you have a form displayed it will recieve these events, and how you interpret and intercept them is through the query unload event of the form. As for the OS's status there is...
Forum: Visual Basic 4 / 5 / 6 9 Days Ago
Replies: 1
Views: 194
Posted By vb5prgrmr
Well, if you have the findwindow API working you are half way there if not more. Search on vb6 kill process, vb6 terminate program, vb6 sendmessage wm_close (at least if my memory serves me right...
Forum: Visual Basic 4 / 5 / 6 9 Days Ago
Replies: 4
Solved: Get drive icon
Views: 266
Posted By vb5prgrmr
Not quite sure what you are asking but I do know you will need to use ExtractIconEx. Now, in these search results ...
...
Forum: Visual Basic 4 / 5 / 6 9 Days Ago
Replies: 8
Views: 316
Posted By vb5prgrmr
Why not just use the DriveListBox???
Forum: Visual Basic 4 / 5 / 6 10 Days Ago
Replies: 2
Views: 285
Posted By vb5prgrmr
by use of the rnd function (see help) and the randomize statement in your startup object.



Good Luck
Forum: Visual Basic 4 / 5 / 6 10 Days Ago
Replies: 2
Views: 266
Posted By vb5prgrmr
two different ways are shown in the following...

Option Explicit

Private Sub Command1_Click()
OpenShowFile
End Sub

Private Sub OpenShowFile()
Forum: Visual Basic 4 / 5 / 6 10 Days Ago
Replies: 6
Views: 356
Posted By vb5prgrmr
Don't think so but look at Project>References. You should have these four at the top and in this order...

Visual Basic For Applications
Visual Basic runtime objects and procedures
Visual Basic...
Forum: Visual Basic 4 / 5 / 6 11 Days Ago
Replies: 7
Views: 366
Posted By vb5prgrmr
J2, read the forum rules...

AND, if the OP would download the WIA SDK they would have all the example code they would need. It is that simple!

By the way, Classic VB or Visual Basic 6.0 has...
Forum: Visual Basic 4 / 5 / 6 12 Days Ago
Replies: 6
Views: 356
Posted By vb5prgrmr
Well first off you need to make sure the directory exists by using the dir function and if it does not exist then you need to use the mkdir statement. HOWEVER, if you are on vista or win7 and in the...
Forum: Visual Basic 4 / 5 / 6 12 Days Ago
Replies: 4
Views: 280
Posted By vb5prgrmr
Well sorry you feel that way but I figured that since the second and third link in that search solves your problem in two different ways, I guess I just figured that you were smart enough and...
Forum: Visual Basic 4 / 5 / 6 12 Days Ago
Replies: 4
Views: 263
Posted By vb5prgrmr
Jupiter2,

Here is a way to shorten you comman1_click code...

Image1.Visible = Not Image1.Visible



Just a piece of knowledge I thought I would pass along.
Forum: Visual Basic 4 / 5 / 6 12 Days Ago
Replies: 8
Views: 328
Posted By vb5prgrmr
Yes it is possible by testing the C.Container.Name = "Frame1" or ...

Dim C As Control

For Each C In Me.Controls
If C.Container.Name <> "Frame1" And C.Name <> "Frame1" Then
C.Visible =...
Forum: Visual Basic 4 / 5 / 6 12 Days Ago
Replies: 2
Views: 230
Posted By vb5prgrmr
Okay, in your first post you set the lock type with the second code snippet but I don't see it in the first code snippet, which means if you have not explicitly set it, it defaults back to its...
Forum: VB.NET 13 Days Ago
Replies: 2
Views: 310
Posted By vb5prgrmr
First, PM a mod and have this thread moved to the .NET forum since this is the "classic vb verision 4/5/6 and not versions for versions2002/2003/2005/2008/2010.

Then, there are several ways in...
Forum: Visual Basic 4 / 5 / 6 13 Days Ago
Replies: 4
Views: 280
Posted By vb5prgrmr
Use your friends... (yahoo, google, ask, answers, bing)...

http://search.yahoo.com/search;_ylt=A0oGkxqMPvZKW1IAgxBXNyoA?p=vb6+ado+retrieve+table+names&fr2=sb-top&fr=yfp-t-701&sao=1



Good Luck
Forum: Visual Basic 4 / 5 / 6 13 Days Ago
Replies: 7
Views: 366
Posted By vb5prgrmr
Look at this search of MS's web site....

http://search.microsoft.com/results.aspx?form=MSHOME&mkt=en-US&setlang=en-US&q=WIA+SDK

See the second one down? When you click on that go to the bottom...
Forum: Visual Basic 4 / 5 / 6 13 Days Ago
Replies: 8
Views: 328
Posted By vb5prgrmr
If you are talking about design time... then,... Drag mouse over all the controls you want to make visible = false. OR, you could put these controls in a frame, picture box, or other container...
Forum: Visual Basic 4 / 5 / 6 13 Days Ago
Replies: 9
Views: 361
Posted By vb5prgrmr
Okay, the reason you are getting the index out of bounds is because of something like this...

Dim MyVar(1 to 2) As String
MyVar(0) = "Whatever" 'throws error because there is no zero (0) element...
Forum: Tech / IT Consultant Job Offers 14 Days Ago
Replies: 1
Views: 333
Posted By vb5prgrmr
Couple of notes right off. While you english writting skills are fairly good they need to be brushed up on. If you have office/word, set it up so its spell checking and grammer checking is...
Forum: Visual Basic 4 / 5 / 6 14 Days Ago
Replies: 9
Views: 361
Posted By vb5prgrmr
Okay, for future reference you need to be in the .NET forum...


Now, I see where you redim preserve strNames and intLevels but no where do I see where you...


ReDim Code(LBound(strNames) To...
Forum: Visual Basic 4 / 5 / 6 14 Days Ago
Replies: 9
Views: 361
Posted By vb5prgrmr
Have you dimed the code variable to the same number of elements as the strNames array? Look up redim and redim preserve if needed.



Good Luck
Forum: Visual Basic 4 / 5 / 6 14 Days Ago
Replies: 2
Views: 241
Posted By vb5prgrmr
Just a note... VB2008 IS VB.NET...


As for unique systems...
Resellers database (Middle man sales)
Fake stock trade with all the formulas to teach people how to trade stocks and what to look...
Forum: Visual Basic 4 / 5 / 6 14 Days Ago
Replies: 5
Views: 327
Posted By vb5prgrmr
Just a note here. What you are talking about is called fraud. I have flagged this thread and will leave it up to the admins to keep it open or close it. You have some splainen to do lucy (okay...
Showing results 1 to 40 of 797

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC