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

    How to end FORM2 after Form.ShowDialog

    hi, what happens is on form1 you open form2 with the show dialog line then in your code you look for the dialog result from form2: form2.showdialog If form2.ShowDialog = Windows.Forms.DialogResult.OK Then 'do whatever you want to do with the form2 stuff 'example mytextbox.text =...
  2. waddellg

    Vb.net Interop with Word 2010 printing Avery Labels

    Hi I had written an app in VB.net that took addresses from a database put them into a csv file then took the csv file data and performed a mail merge in Word to allow the user to print them out on to an Avery L7163 label sheet. The app was working fine until our company upgraded from Windows...
  3. waddellg

    Problem openning and closing word documents

    Hi Close the doc with the false flag: oDoc.Close(FALSE) Or ditch the saveas and save as you close: oDoc.Close(TRUE,,"q:\computer.adm\basbrian\Delegation for " & CboName.Text & ".doc") I'd go for option 1, you just have to type false into the close
  4. waddellg

    Problem with sheetnames in excel....

    Hi The only way I know how to do it is to use the Excel application and parse through the worksheets: dim XL as new Microsoft.Office.Interop.Excel.Application dim xlWS as Microsoft.Office.Interop.Excel.Worksheet dim xlWB as Microsoft.Office.Interop.Excel.Workbook dim strSheet as string xlWB =...
  5. waddellg

    Why is my browser called when completing the Publish wizard?

    Hi, I think you must have the deployment web page option enabled in your publishing options. This is how to change it in VS 2008: In your Solution Explorer select MyProject node (i.e. if your project is called App1 then underneath the App1 node there should be a myproject node) and right...
  6. waddellg

    a PDF in the EMAIL body

    Hi I'd recommend going to www.adobe.com/devnet and getting your hands on the SDK for any PDF work. As far as your questions go: 1. Not sure of PDF behaviour in browse probably best to try sending a test pdf doc inserted into a post and see how it behaves. 2. What are you linking to? if a...
  7. waddellg

    Acrobat 7 not closing through OLE in VB.net

    Hi all, It looks as if the PDF stuff is behaving like static variables even though they should be dynamic! I tried not saving anything just modify print and the close with no save and I could print multiple batches. The trouble is in order to put the correct mark up in to the document I had...
  8. waddellg

    Acrobat 7 not closing through OLE in VB.net

    OK, I'm getting desperate here I've tried the following code and even though I think it is over kill I'm still not getting anywhere.... Imports System.Diagnostics 'put in your imports area of the form etc. .......... Public sub KillAcrobat() dim MyProcess as Process On Error...
  9. waddellg

    Acrobat links don't work on web site

    Hi It should work something like this: http://localhost/myPdf.pdf#page=4
  10. waddellg

    Acrobat 7 not closing through OLE in VB.net

    Hi, I've written an app in VB.net for bulk mailing of clients customers. As part of this app I have to insert OMR markers into the documents that are being printed off. The issue that I am having is that I can open an Acrobat file and insert the markers then print off the document for the...
  11. waddellg

    Acrobat links don't work on web site

    Sorry, Just trying to understand what you are doing. You have 15 PDF file connected together by links. You want to put them onto a webserver and still allow them to work? Or you want the user to down load them as a package and they don't extract to the same directory?

Part and Inventory Search

Back
Top