Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by MisterC

  1. MisterC

    Cannot run exe file on server from client computer

    Thanks for your reply. I have tried disabling the antivirus software on the client computers (Norton AV 2006) but still no luck.
  2. MisterC

    Cannot run exe file on server from client computer

    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...
  3. MisterC

    28 days from end of date

    Try this- To get the end of the week for a date in cell C6: =IF(WEEKDAY(C6)>6,C6+6,C6+6-WEEKDAY(C6)) Then just add 28 days to it to get your due date.
  4. MisterC

    excel file too large to load? any way around this??

    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...
  5. MisterC

    Print one field of selected record

    Nevermind, I got it. Thanks!
  6. MisterC

    Print one field of selected record

    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!
  7. MisterC

    filesearch - replace string

    just a guess - are you saving the document after you do the replace?
  8. MisterC

    Progress bar while running a query

    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?
  9. MisterC

    Code Not Working

    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...
  10. MisterC

    Always on top... and then loses focus?

    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)
  11. MisterC

    Which form didn't close?

    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...
  12. MisterC

    vb6 graphical report help

    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...
  13. MisterC

    PDF Fill in forms automation

    Any suggestions yet?
  14. MisterC

    Determine unknown data file type

    Hi Frederico, thanks for your response. The file isn't much to look at, but here you go: 0000000: c100 6666 0000 0001 0100 4b00 0000 0d00 ..ff......K..... 0000010: 0002 0000 0000 0000 0001 0000 0000 001f ................ 0000020: 1702 1901 691f 1702 1901 6900 0000 0000 ....i.....i...
  15. MisterC

    Determine unknown data file type

    Nope, it is definitely a data file. Thanks anyway.

Part and Inventory Search

Back
Top