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...
Thanks for that quick reply -
There isn't any plain text, just binary looking stuff - spaces and rectangles and accented characters. And no recognizable words or file type description in the characters.
Hi folks,
I'm trying to import a data file into MS Access without knowing what type of data file it is. The file's extension is E00 (which means nothing to me...) and my first guess (dBASE) doesn't appear to be correct.
Does anyone know how to analyze a file to determine it's type?
Thanks for...
Jakos: Wow that's a lot of coding. Thanks, but it still doesn't do what I had intended - You hard coded the IControl_Click event. What I was looking for was something like:
NewButton.AddEvent (Click, strEventText)
where strEventText is the actual code to run for the Click Event. (...but I...
No reason. Actually that appears to be the best way to handle it. I'll use a generic button click procedure that looks at the individual button's tag property to determine what to do.
Thanks all for your help.
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.