I'm trying to run an executable file (not just one, any executable) that exists on my windows 2003 server from a mapped network drive on a windows 2000 client computer.
I can run the exe files fine from windows xp client computers, but the windows 2000 client computers hang when I attempt it. I...
You say that the exports are "only to Excel", yet you then say that they are exported as .txt files.
If they are indeed text files, MS Access can import them directly (without Excel) and does not have the 65,000 record/row limitation that the current versions of Excel have.
Why not import the...
My table has a memo field. I have a form that displays the table's records individually.
I want to put a button on the form that will print just the current record's memo field. (Not the full form or whole record...)
Can anyone help me with that?
Thanks!
I know this doesn't answer your question, but why not use an animated GIF or change the mouse cursor to an Hourglass to indicated something is going on?
You don't need to nest your IF statements. Try it this way:
Private Sub RunMacros_Click()
Dim NoneChecked as Boolean
NoneChecked = Not(Check1.Value or Check2.Value or Check3.Value or Check4.Value)
If Me.Check1 = True Then DoCmd.RunMacro "Macro1"
If Me.Check2 = True Then...
I think that the SetWindowPos function is for ordering windows on the desktop itself. To set your "floating toolbar" form to be on top of the main form, try opening it with:
myToolbarForm.Show False, Me
'Modal = False, Owner Form = Me (The calling form)
This may not be exactly what you are looking for, but I usually use this in the "main" form's queryunload event to unload all the app's forms that may be open:
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
Dim frm As Form
For Each frm In Forms...
I'm writing a simple form-fill application in vb6.
The idea is that the user answers some questions and the application loads a PDF form with the appropriate data and prints it out. The form is a standard pdf form with fill-in fields, but I can convert it to jpeg or tiff or whatever to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.