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

    Is there a way to programmatically embed photos in Word?

    Thanks for your replies! I couldn't get the Ctrl-A, Ctrl-Shift-F9 approach working with Word 2007 (I could with Word 2003). So I found a Word->RTF converter which inserts the images into the resulting Word doc. I just need to clean up my HTML, and I think I'll be ok then. Thanks again!
  2. pattyc

    Is there a way to programmatically embed photos in Word?

    My app creates an HTML with text and images. Then I use a converter (currently trying out ConvertDoc) to convert the HTML to a Word doc. I'm doing this because I need to have the images inline with the text so that a user would be able to open the Word doc and select, copy and paste a whole...
  3. pattyc

    How do I access the MAS db via Java?

    Actually I ended up not connecting to the db. DB connection and access will be slow. A possible solution is to have a secondary, faster db, but then you'll have to deal with the issue of keeping that second db in sync with the first. You could use the secondary db to just hold the more highly...
  4. pattyc

    getURL problem

    Maybe it's not a Flash security issue because I added the folder for a particular doc in the security settings, and it still didn't open. Could this be a browser security issue?
  5. pattyc

    getURL problem

    Well it doesn't work on either browser for me. Could this be a security issue in Flash 8? Any suggestions?
  6. pattyc

    getURL problem

    I'm using Flash Pro 8 on Win XP. In my Flash document, I have made several empty movie clips that act like buttons. When one is clicked, I want a local file to be opened (might be a .txt file, for instance). I set each movieclip's onRelease event to a function that just does...
  7. pattyc

    Cannot get vendor id in Vendor Maintenance/Vendor Inquiry

    I go to Vendor Maintenance->Invoices tab. I click on an invoice which brings up Invoice Dril Down. On Invoice Drill Down, I have three custom buttons. These buttons have scripts that call my Java app and send as parameters the vendor id and invoice id. I'm getting vendor id=invoice id, and...
  8. pattyc

    Cannot get vendor id in Vendor Maintenance/Vendor Inquiry

    Is this a bug? If so, is there a way to report bugs? This is seriously limiting the functionality we want to provide our client.
  9. pattyc

    Cannot get vendor id in Vendor Maintenance/Vendor Inquiry

    I go to AP->Vendor Inquiry->Invoices Tab. I click on an invoice and bring up Invoice Drill Down with my customized buttons. I want to get the vendor number and invoice number. In my program script, I reference {ML_VEND_ID$}, and the value that is returned is the invoice number. I also...
  10. pattyc

    How can I get a check number?

    Thanks, BigLouie! That's just what I wanted to know, and that means my problem can be solved.
  11. pattyc

    How can I get a check number?

    Sorry about the lack of explanation. Here's a scenario: the user is audited and and is asked about check 1234. User goes into MAS into Accounts Payable->Vendor Maintenance. She enters the Vendor number and clicks the Checks tab. She selects the line for check 1234. I have a customized...
  12. pattyc

    How can I get a check number?

    In AP->Vendor Maintenance, the checks are listed in a listbox under the Checks tab. Is there a way to grab the selected row ? I want to parse out the check number. Or is there anywhere else in MAS where you can get the check number (for instance, there's a field on a form that I can grab)?
  13. pattyc

    Error performing VI export

    I am trying to do an export from MAS to Excel using VI. I set up the Excel spreadsheet, I set up the ODBC data source, and I set up the export job. When I run Test, I get results, but when I run the job for real, I get "Error 15 in program VIWX01 at line 0690". I get that error at that line...
  14. pattyc

    How do I access the MAS db via Java?

    Actually it seems to be the connection that's really taking the time.
  15. pattyc

    How do I access the MAS db via Java?

    I got the query working, but it's taking 5-10 minutes! Is there any way to speed things up? Connection conn = null; try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); } catch(java.lang.ClassNotFoundException e) { System.err.println("Didn't find the class")...
  16. pattyc

    How do I access the MAS db via Java?

    I'm running the MAS 200 4.10.1.1 client. I want to write a Java app to query the MAS database directly via ODBC (I don't want to use VI or MS Query to write to an Excel spreadsheet, for instance). How do I do this?

Part and Inventory Search

Back
Top