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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Chesterex1

    Controlling Web Browser with VBScript for Data Input

    At my firm -we are trying to onboard thousands of accounts from an old system to a new system. A "traditional" conversion would be very timely and costly. One suggestion was to enter the accounts into our existing system - using the present WebBased interface. However, instead of people typing...
  2. Chesterex1

    Saving pdfs from IE 7 to local files

    You, sir or madam, are a genius! I was wasting time and banging my head for hours yesterday. This will save a lot of manual work!! Thank you VERY Much!! :-)
  3. Chesterex1

    Saving pdfs from IE 7 to local files

    I have a series (over 800) pdf files I need to take down from server site and save locally. I think I am 1/2 the way there with code below - just need to know a quick way I can Save the document as a pdf once it loads in the Browser window (I had assumed there would be a reference for the SaveAs...
  4. Chesterex1

    Cannot open report!?!?!

    Skins -- Did you get a resolution to this problem We are having exact same problem since migrating to XP o/s and Access 2003.
  5. Chesterex1

    Access 2003 Migration issue

    Good Morning In updating our users from Access 2000 to Access 2003 and W2k o/s to XP o/s we find some users do not have access to all objects within the existing MDBs This seems to be regardless of how the security level settings and Macro settings are set. In fact a user signed into their own...
  6. Chesterex1

    form for prompting to enter data

    You can use docmd.Quit This will Close the Application. In order to do this - make sure the Form Modal property is set to true - I.e. they can not set the focus to any other object. Before closing that window. Hope this helps
  7. Chesterex1

    Image Viewer Linked to Tif file in Access2003

    Thanks I will have to install the software as the file types can not be changed. The database form is used to view first page of a scanend image to assign indexing values before it is posted to our data warehouse. As it was a test amchine - it must not have the imaging software on it as yet --...
  8. Chesterex1

    Image Viewer Linked to Tif file in Access2003

    Good Afternoon We are preparing to update from Access 2000 to Access 2003 I am testing an Access FOrm with an image control that works fine in Access2000. The user selects a file name from a drop down box. Clciking a command button sets the Image picture property to that TIF file. However- I am...
  9. Chesterex1

    Using Image Control to view Tifs

    That will work for my purposes. I added a new command button that will change between Zoom and Clip properties. THANKS!!
  10. Chesterex1

    Using Image Control to view Tifs

    I am using an image control to view tifs to great effect. The utility allows users to add indexing criteria for scanned images.The user controls which picture to display with a drop down box (pointed to a specified directory) and a command button (used to set the picture property). However -...
  11. Chesterex1

    Opening a .TIFF/.PDF From a Sub-Form

    Try adding this line of code: Call Shell(strPathtoViewer & " " & strPathtoFile, 1) Where strPathtoFile = <<full path and file name to your viewer, eg. c:\program files\Adobe\adobeviewer.exe AND strPathto File = full path and filename of the file to open.
  12. Chesterex1

    Run Time error 2455 After convert to Access2000

    We recently converted to Access2000. My Database runs queries and emails reports. Ran well 3 times - today I get this error when attempting to send email using the Docmd.SendObject command 2455 - You entered an expression that has an invalid reference to the property HyperLinkSubAddress. The...
  13. Chesterex1

    Referencing Null

    I have Null values that I want to skip if the field is Null I have tried the following to no avail: If Recordset!Fieldname Is Null then ... ..aslo.. If Recordset!Fieldname = Null then ... Any thoughts? Thanks Tim
  14. Chesterex1

    Referencing a field using a variable

    Thanks LittleSmudge -- just what I needed!!
  15. Chesterex1

    Referencing a field using a variable

    This is perfect -- I thought I needed the ! character in there - but I don't -- you saved me much aggravation! Thanks Ken!!! -Tim RBC Dominion Securities
  16. Chesterex1

    Referencing a field using a variable

    I have code as follows Dim strField as string, dbT as Database, rsT as RecordSet strField = &quot;something&quot; Set dbT = CurrentDb Set rsT = dbT.OpenRecordset(&quot;table&quot;) if rsT!strField = &quot;na&quot; then .... I WANT to use a variable to reference the field name in a recordset -...
  17. Chesterex1

    New to CGI - need update AccessTable

    Thanks Paul - this was perfect!!
  18. Chesterex1

    New to CGI - need update AccessTable

    I know Access extremely well - but not Perl or CGI. I have been given a last minute project where I must make a series of reports based off data given to me from a .cgi page.The web developer gives me a text file (pipe character delimited) - problem is it is 474 fields and Access is limited to...
  19. Chesterex1

    Change Font In Outlook through code

    No I did not -- I tried creating an email template - but had no luck with that. What I ended up doing was have the &quot;Alert&quot; message appear in Capital letters and three times in a row!! I used the vbCrLf constant to separate the alert message so it appears on 3 separate lines. Thanks Tim
  20. Chesterex1

    Change Font In Outlook through code

    I am using &quot;CreateItem&quot; to make an email object to send programamtically. I want to change the font to bold and RED. Is this possible using the Object references for the Outlook Object library? Any help would be greatly appreciated. Thanks Chett

Part and Inventory Search

Back
Top