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

    Fax to a file on XP/

    Found the cause of the problem. It's a Microft Bug. See link as follows: http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q274523&
  2. zjlu2715

    Fax to a file on XP/

    Has anyone tried to use the fax utility on Windows XP to create a fax formated file in VB which then can be delivered & viewed? I tested with WordPad or NotePad, by click on the "Print to File" checkbox. When print starts, a window pops up asking for filename and then print to the...
  3. zjlu2715

    printing to multiple printers

    I think the problem may have been caused by the set printer statement is for your application only and crystal report runs on its own env. You may try to permanently set the printer then call up crystal report by adding a common dialog box on your form, call it cdlPrinter. Then insert the...
  4. zjlu2715

    Unicode characters in a form caption

    I think the caption font is controlled by system settings (in display sections), and thus, cannot be set for 1 form only.
  5. zjlu2715

    Refreshing DataGrid according to Combo Box ?

    If I didn't misread you, you may add lines in Combo_Click event to change Datagrid.
  6. zjlu2715

    Change image size by modifying resolution

    No one seems have tested it on XP yet. I'll test it out & let you know what's going to happen. Appreciate your effort. As we all know, a tip is the start of all possibilities. Jason
  7. zjlu2715

    Change image size by modifying resolution

    I found the Kodak Image Editing in a Win98 system while mine is WinXP. Copied the .ocx file over to XP but got "not registrable" error when trying to register it. Is there an updated version for XP?
  8. zjlu2715

    Change image size by modifying resolution

    I didn't find the Kodak Imaging Tool in my component list. Is it downloadable somewhere?
  9. zjlu2715

    Change image size by modifying resolution

    Image processing seems to be a weak spot in VB. I need to display and print an image that is too large (generated with SavePicture and printed with PaintPicture). How do I compress the size by increase resolution? Also, are there free utilities that compress the image to .tif or .jpg to reduce...
  10. zjlu2715

    How to Control CD Drive operation?

    Rob, That worked nicely. Thank you. Jason
  11. zjlu2715

    How to Control CD Drive operation?

    Is there any way one can control CD or CDRW drive such as Eject CD or eject CDR & leave data in original format and so on. I'd like to provide a function in my code to do what EasyCD Creator does where I can click on the icon in system tray to eject a CDR.
  12. zjlu2715

    How to TILE a small picture to entire image area

    Haysie, I checked the blackbelt MDI package. It works and is a very good example to learn image programming with VB & API. Right now, it's a bit over me. Thanks for the link.
  13. zjlu2715

    How to TILE a small picture to entire image area

    Thanks for the tip. PaintPicture! That's great. It seems to me the duplicated pictures should not take up additional resources like objects since they are simple bitmaps. Is the overhead in placing them on form an issue (or in another word, how much performance & resources we commit to painting...
  14. zjlu2715

    How to TILE a small picture to entire image area

    I don't seem to find a TILE function in VB to repeat a small picture to make out for the entire background (such as building a form). Does anyone know how to do it in VB 6.0?
  15. zjlu2715

    How do I cancel an update to datagrid?

    You may want to track when _AfterColEdit() is activated. If you are moving off the current record to a different one, the underlying database gets updated automatically and you cannot undo it without modifying the record yourself. Jason
  16. zjlu2715

    Printing Help!!

    T.S. Your last posting does what you were asking. Try it. A simpler way would be" Printer.print myName; tab(30); myPhone; tab(50); myDOB You got to make sure the tab size is larger than the longest text, or it will come out strange looking. Jason
  17. zjlu2715

    Can Visual Basic...

    It sounds like you already know how to write to encrypted pdf form, which I think is where all of your challenges lie. Input a text file in VB is very simple, just set the Filename of a Richtext Box, it reads in for you. Or you can write a few lines to put in a string variable: Dim myText as...
  18. zjlu2715

    Joining All Forms

    Regardless of how many forms, they all have a starting point. Open the project properties to see which form is the start up form. If it's "Sub Main", go to your sub main in one of the modules. From there, you just have to look for "load form" or "form.show" to...
  19. zjlu2715

    Hotspots triggering a click event (inVB!)

    I would put the cordination of border lines in a group of arrays, then use the (x,y) from mouse click to tell which part of the map the user is on and give response accordingly. Jason
  20. zjlu2715

    How to pass key events from User Control to the Form it's in

    I made a ActiveX control that allow user to navigate through a list with arrow keys. On the test Form, I loaded an array of this control. I set the KeyPreview of the form, but it never gets the key events, the active control alway takes the keystrokes before the form preview them. Is there any...

Part and Inventory Search

Back
Top