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 Wanet Telecoms Ltd 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. zollo9999

    Cbo col2 -1/0 vs Yes/No

    Hi PHV Thanks This hotfix exactly addresses this issue. I have requested the hotfix be tested and installed on all our desktops. I'll give you a star for this tip. Paul Zollo VBA Developer [thumbsup] http://msdn.microsoft.com/en-us/library/bb190882(office.11).aspx
  2. zollo9999

    Cbo col2 -1/0 vs Yes/No

    Hi Remou Yes we are now running Access 2003 SP3. It sounds like you know a bit about the impact of SP3 changes. Anything you can add on this front? Zollo VBA Developer [thumbsup] http://msdn.microsoft.com/en-us/library/bb190882(office.11).aspx
  3. zollo9999

    Exporting issue to MS-Excel from MS-Access

    Firstly. Have you checked the formatting for those columns in excel to see it the data is coming across, but just appears to be zero. If the data is coming across there are automation methods for formatting the spreadsheet. Secondly, if the data is not coming across, there could be something...
  4. zollo9999

    Cbo col2 -1/0 vs Yes/No

    Hi I'm using a combo box to display a list a staff, which the user selects. The combo has a row source set to a SQL query statement with 2 columns. The formatting is set to display the 2 columns when selecting a staff member. The second column is a Yes/No field in the source table. It...
  5. zollo9999

    Macro's & VBA MDE won't run in Runtime

    Hi Steve Thanks for the info. Unfortunately your very cool fish icon grabs my attention so much it took me twice as long to read your posts. (They appear several times on the page one for each post of course) Could you perhaps substitute a static icon to help other readers? Thanks Zollo VBA...
  6. zollo9999

    Saving Access 2003 reports as PDF files using VBA

    Hi Just last week, hermanlaksko in thread705-1478540 recommended the following link to solve your problem: http://www.lebans.com/reporttopdf.htm I have not tried it yet as it was not relevant to me, but this is a FREE solution to your problem. :) Cheers Zollo VBA Developer [thumbsup]
  7. zollo9999

    Delete a folder and all subfolders and files

    Here is a simple method to delete a folder and all files and subfolders. It uses the File system Object. To use it, you will have to set a reference to the 'Microsoft Scripting Runtime' usually found at C:\WINDOWS\system32\scrrun.dll . Public Sub DeleteAllFolders(FolderPath As String)...
  8. zollo9999

    Print PDFs with Acro/Reader 8.x ActiveX Error 429

    Yes I agree. I will have to spend some time tweaking it and testing it. One thing that may help in my case is installing the PDFs on the users desktop or a local server. "What the... ?" I here you say! Our IT systems are mildly schizophrenic. My work section has been added two other large...
  9. zollo9999

    Print PDFs with Acro/Reader 8.x ActiveX Error 429

    Perhaps I'm already using the following pausefor sub Public Sub PauseFor(intSeconds As Integer) Dim dtEndTime As Date dtEndTime = DateAdd("s", intSeconds, Now()) Do Until Now() >= dtEndTime DoEvents Loop End Sub Zollo VBA Developer [thumbsup]
  10. zollo9999

    Print PDFs with Acro/Reader 8.x ActiveX Error 429

    Hi again As I don't have any version of the full acrobat product, it appears my prefered solution (direct control of adobe reader to print documents) is not possible, unless I can find a free reader plug-in that enables control of printing. No Luck yet but will keep looking. The following...
  11. zollo9999

    Print PDFs with Acro/Reader 8.x ActiveX Error 429

    Thanks Herman. I appreciate the efforts you have made. Sorry I didn't get back to you sooner, perhaps to save you some trouble. I did try the /p /h commands last night and they did work as you described. (I've got some other problems with my app that are also taking lots of my time to resolve...
  12. zollo9999

    Print PDFs with Acro/Reader 8.x ActiveX Error 429

    Hi again I don't think your code will work with Acrobat / Reader 8.0 We had Reader 7.x previously but now we have 8.0. I can't wind back to 7.x as I'm part of a big government Department. Here is the code I used previously with the /t command parameter which does not work for Adobe 8.0...
  13. zollo9999

    Print PDFs with Acro/Reader 8.x ActiveX Error 429

    Hi again. I don't know where you are going with those thoughts about printing to the screen. Perhaps viewing and then printing. I can get all the docs open using a shell command and the string path to each document. As there are 7 documents to print at one time, I'd rather be able to just...
  14. zollo9999

    Print PDFs with Acro/Reader 8.x ActiveX Error 429

    Hi Herman Thanks for your reply. That info will be useful and I will look into it further. Unfortunately, it is not an answer to my problem as I'm not creating pdf reports from access, but needing to print existing PDF documents. Is there anyone else with any help? I will attempt to run the...
  15. zollo9999

    Print PDFs with Acro/Reader 8.x ActiveX Error 429

    Hi I need to print on demand 7 external PDF documents. I've already successfully implemented the legacy methods of using the shell command and passing the /t print command line, as shown here: thread707-860631 I now have Adobe Acrobat & Reader 8.0 where this method no longer works. There is a...
  16. zollo9999

    div with class screws selecting text

    Thanks Vragabond Cutting out the absolute positioning has stopped the problem. When I have time I'll redesign the CSS, but for now I'm tied up in a VBA project. :) Zollo VBA Developer [thumbsup]
  17. zollo9999

    div with class screws selecting text

    Hi I've just realized that I've mixed up my class and Id jargon. I should have said id="stylename" or something else but I'm not using classes in this case. But the problem remains! Zollo VBA Developer [thumbsup]
  18. zollo9999

    div with class screws selecting text

    Hi I'm very new to coding in CSS, and I did a very basic dreamweaver / x/HTML/CSS intro course a few weeks ago. (I'm using Dreamweaver Mx 2004). Under advice from the teacher, my Html has is divided up into Divs. I've got divs for page, header, content and footer. Within content I've got divs...
  19. zollo9999

    Altering the Find/Replace Function

    No Problem Understanding how Dates work is very valuable for anyone programming in VB/A, so good on you for making the effort to hightlight what dates are and how they can be manipulated and displayed. :) Zollo VBA Developer [thumbsup]
  20. zollo9999

    Altering the Find/Replace Function

    Hey Skip, Your tone sounds a bit mean an unnecessary. Yes you are right that Microsoft products store dates as numeric values but that does not dictate there being only one way to skin the cat. Mizzness. Have a look at this alternative. Dim strDateLeft as string Dim strDateRight as string...

Part and Inventory Search

Back
Top