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 strongm 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. cccruz18

    Query Toolbar

    Hi! It seems that I've mistakenly deleted a file for Visual Interdev. I could not get an access to the Query Toolbar. I've tried adding a control through view menu then customize but this control is already existing accdg to the message. However, I could not see any query in the list. Please...
  2. cccruz18

    duplicate instance

    Hi! Rephrasing my question: What I mean is I have already inserted PrevInstance in my VB Application. Private Sub Form_Load() If App.PrevInstance Then Unload Me End Sub When compiled, add .exe to the scheduled task that runs everyday and closes after completing a process. However...
  3. cccruz18

    duplicate instance

    Hi! Yes. Already tried PrevInstance. It seems that the command does not work in Microsoft Scheduler. Is there any other way to trap duplicate instance? Thanks. Ann
  4. cccruz18

    duplicate instance

    Hi! Help please! My VB application is running through Microsoft Scheduler. My problem is that there are times that the application is manually opened thus having duplicate instance - one in scheduler and one manually opened. How can I prevent this? I've tried using preinstance but it seems that...
  5. cccruz18

    Desktop Shortcut

    Thanks Aslamvs! I've copied shortcut.exe and used it to create a shortcut in my application. However, If the desktop path is not specified, .lnk is created in default drive or c:\. Problem is that once another user is going to log, desktop path changes. Would you know a way that I can define a...
  6. cccruz18

    Desktop Shortcut

    Hi! Shortcut is not recognized as an internal or external command error. I'm using windows 2000. Thanks.
  7. cccruz18

    Desktop Shortcut

    Hi! How can I create a desktop shortcut using the command prompt? Ann
  8. cccruz18

    clireg32

    Hi! Help! There are some changes done in my application EXE<workstation> as well as DLL<server> (Three Tier). Unfortunately, re-packaging is not an option because the application is installed in 200 workstation and re-installing will be strenous. Plan is to register the new <binary...
  9. cccruz18

    Eliminating Export Option Dialog

    Is there any command that we could set number of pages exported to all? Maybe this could suppress the export option? Please help...
  10. cccruz18

    Eliminating Export Option Dialog

    The same happens when I use word or excel as a destination. Time problem if we upgrade. Is there any way that we could just add or change our command line?
  11. cccruz18

    Eliminating Export Option Dialog

    I'd tried ORpt.ExportOptions.DestinationType = 35 '### ExactRTF But I get 30012:Invalid enum value. Please help(again).
  12. cccruz18

    Suppressing Export Option

    Here is a brief sample of my code. ORpt.Database.Tables(1).SetPrivateData 3, rstCreateReport ORpt.ExportOptions.FormatType = 4 '### Disk ORpt.ExportOptions.DestinationType = 1 '### Rich Text Format ORpt.ExportOptions.DiskFileName = vPathApplication ORpt.Export False We'd already tried...
  13. cccruz18

    Eliminating Export Option Dialog

    ORpt.ExportOptions.FormatType = 4 '### Disk ORpt.ExportOptions.DestinationType = 1 '### Rich Text Format ORpt.Export False We'd already tried this but still doesn't suppress the export option dialog box <contains number of pages to export>. We have used Crystal Report Ver7 to design reports...
  14. cccruz18

    Eliminating Export Option Dialog

    The application exports reports to disk. Everything works fine except that a dialog box appears that asks if you want to export all or certain pages. I would like to suppress this dialog. I thought that setting the export = false would do this but it does not. Here is a brief sample of my code...

Part and Inventory Search

Back
Top