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. bmoyer23

    Disable Spell Check Outlook

    Any examples???
  2. bmoyer23

    Disable Spell Check Outlook

    Is there a way to diable automatic spell check (Tools->Options->Spelling...) when sending email via Outlook in Visual Basic? Thanks in advance.
  3. bmoyer23

    Print .TIF to 11X17 Papersize

    How can I set the paper size of a printer in VB? I've tried a couple different methods listed below. Please advice. Thanks in advance. 1) Using the OpenPrinter, SetPrinter API functions - this seems to only work if the user has admin privileges to that printer. In my case, giving admin...
  4. bmoyer23

    Too Much Information...

    1. In Access go to Tools->Startup to display startup options. There is an option for "Display Database Window"... uncheck this.
  5. bmoyer23

    Group box caption

    Found it! The CWnd is what I need. Man, I can be such a newbie sometimes.
  6. bmoyer23

    Group box caption

    How do you change a group box control's caption in code? I've looked all over for a class for this control, but nothing. Thanks in advance!
  7. bmoyer23

    Convert an HTML document to a PDF

    I've used Ghostscript (free) with Redmon (free) port redirection with great success, although it requires a bit more tweeking to get up and running. You can print to .PDF as well as many other image formats... .bmp, .tif, .gif...
  8. bmoyer23

    Control File Access

    Thanks for the response Dan688. I might consider the renaming option. Also locking the folder will not work, because the user will not have access when running the application.
  9. bmoyer23

    Control File Access

    I have a .pdf file that is launched via my VB application. I want the user to have read access to this file via the application ONLY... no acces to the file outside the application. Any ideas? I was thinking of having the network admin set up a new network userid with the proper permissions...
  10. bmoyer23

    MFC tab control and transparent images

    Is it possible to get bitmap images to show transparent on the tab control? What am I missing? My code is below. Thanks in advance. void CSHCS_Params_Dlg::InitializeTabCtl(CTabCtrl * _tabTool) { TCITEM tcItem; CImageList *imgl; CBitmap bmp; imgl = new CImageList()...
  11. bmoyer23

    PDF with WebBrowser control

    Thanks for the response. Yes, I've considered opening the .pdf via the SHELL command. But, I like the idea of having the .pdf within the form.
  12. bmoyer23

    PDF with WebBrowser control

    I'm using the WebBrowser control to view .pdf files within a VB6 form. I'm having performance issues when loading the files or navigating from file to file. At times, the performance is good. Could current internet traffic be a factor? I want it to always run offline, since these file are...
  13. bmoyer23

    Number of users running a VB EXE

    I use the Computer Management Console (similar to what Tom is using) which is found under Administative Tools in WinXP. If the VB app is served, I think you'll need admin priveleges to that server to view open files.
  14. bmoyer23

    Getting default e-mail profile

    strongm: Thanks for the post. I am using the CDO reference (ie: CreateObject("mapi.session")). What is the preferred method in your opinion? I haven't seen to many examples accessing the API directly. Craig: Thanks for your example. Worked great when testing on a local pc. But...
  15. bmoyer23

    Getting default e-mail profile

    We are using the MAPI to email via a VB6 application. When using this method you have to provide a valid mail profile if you want to bypass the profile dialog. We have PCs setup with different default mail profile names(ie: "ms exchange settings", "outlook", ...). Is there...
  16. bmoyer23

    Using In Line SQL in VB

    Search for help on created Recordsets...
  17. bmoyer23

    Shell a non .exe and wait

    Thanks for the reply Bob. I was looking for a way to lauch an Access application without providing the install location (ie: c:\program files\ms office\...). I tried using the RunUntilFinished function with the ShellExecute api, but it did not work. Any other suggestions.
  18. bmoyer23

    Shell a non .exe and wait

    How do I open an access application (.mde) from VB and wait until it finishes. Keep in mind I do not want to pass the install path of MS Access. The code below, which came from the FAQ section, works only with .EXE files. Please help. Thanks in advance. Public Function ExecCmd(cmdline$)...
  19. bmoyer23

    I have a class setup to open all da

    Darn it... I forgot to enter a subject. :-)
  20. bmoyer23

    I have a class setup to open all da

    I have a class setup to open all database connections... with the connection stored in a property procedure. To be able to use these connections outside the class, I'd like to be able to do a property get. Is this possible? Is anyone doing something similar? Property Get Connection() As...

Part and Inventory Search

Back
Top