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!

Recent content by DutchMaster

  1. DutchMaster

    Issue with pictures not being displayed correctly in XP

    I would try using a GIF or BMP.
  2. DutchMaster

    code to be written in diff files

    I tend to put all global variables in a module.. if they are declared public in a module, you can access them anywhere in the program just by using the Variable name. Placing these globals anywhere else requires you to call it like Control1.VariableName, rather than just VariableName CTL_Code...
  3. DutchMaster

    Datagrid and listbox query

    You're not going to have much luck getting more than one column into the listbox (unless you have a third-party listbox control with multi-column support). Im not really as familiar with the DataGrid as I am with a Listview so Im not really able to answer the other 2 questions. I know you will...
  4. DutchMaster

    Duplex printing of MDI child form

    Your Printer may need to be set to print duplex if it does not do so by default. When you click PRINT, do into your printer settings, and see if you can find anything there. I also have a Duplex-Compatible printer (Really a Minolta BizHub Photcopier/scanner/printer). Often times, regardless of...
  5. DutchMaster

    Printing large charts on the Printer object

    This sort of strange printing behavior normally occurs when your X or Y value are off the limits of the actual page. This may seem like a stupid question.. but are you using printer.newpage? ie... Private Sub Button_Click PrintPage 1 PrintPage 2 PrintPage 3 PrintPage 4 end Sub...
  6. DutchMaster

    Creating outlook .pst file using VB

    Im not really sure if this is possible, but if it is, you can likely find it in the Microsoft Outlook 9.0 Object Library (under 'References')
  7. DutchMaster

    A Simple Syntax Question

    Statement retracted. Working well now. Thanks.
  8. DutchMaster

    A Simple Syntax Question

    My Mistake.. the code doesnt have those, I accidentally posted a test html output instead of the most current. the HTML above was taken after I removed the [' and '] chars.. and I just forgot a set. It has since been updated to not have those, and still yields an error.
  9. DutchMaster

    A Simple Syntax Question

    http://www.jasongoldberg.com/javahelp.htm I removed all of the dashes (rather than replacing them). This did not work, cLFlaVA. Then I tried your second suggestion on top of the first, and still no luck.
  10. DutchMaster

    A Simple Syntax Question

    Ooh.. good suggestion. Ill try and get back to you.
  11. DutchMaster

    Edit a ListView Item, Turn this off?

    1- Right Click the ListView 2- Go to Properties. 3- Set LabelEdit to "1-lvwManual' thats all she wrote.
  12. DutchMaster

    A Simple Syntax Question

    Excuse my ignorance, but I am just beginning to dabble in JavaScript. I have a webpage found at www.jasongoldberg.com/JavaHelp.htm It is basically a shopping cart page. The only thing is there is an error (maybe two) in the syntax I am using. If anyone can help me it would be greatly...

Part and Inventory Search

Back
Top