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!

Search results for query: *

  1. kophjager

    Access to files in protected intranet folder

    Dimandja, Thank you for the post, but I am a little lost in exactly how to access a password protected network folder using that convention. To me it looks sort of like a database connection. I've never done anything like this before so are you saying I can access a password protected or secure...
  2. kophjager

    Access to files in protected intranet folder

    Hello All, I've been searching the internet and example code on MSDN for what I want to do and have not been able to find anything. I do not know if it is because I am not looking for the right keywords or if what I am trying to do is do-able. So I'm hoping I can get some insight and help...
  3. kophjager

    Adobe printing with reader using VB6

    idono, The object creation you have used requires the Acrobat Type Library, Acrobat.tbl. It comes with the full install of acrobat or acrobat approval. Users using Reader will not have the file as they do not have the full version of Acrobat. -kophjager
  4. kophjager

    Adobe Acrobat Automation

    Declare the variable as you have and then when you create the object use Set acroapp = CreateObject("AcroExch.App"). That should work. -kophjager
  5. kophjager

    Open PDF file, Print then Close

    There is a way to do this by cycling through the running processes and compare the name to "Acrobat.exe". Use the windows API, CreateToolhelp32Snapshot, to create your running process list and then just cycle through them using GetProgramName to get the name and ProcessNext to move...
  6. kophjager

    Editing pdf's within vb

    Hi Bubarooni, If you use a PDF Form and place select boxes or text boxes on it, you can link that information to a database. You would want to look into the document properties and Set A page Action. It is very similar to haveing a webpage form and when a user clicks the submit button...
  7. kophjager

    PDF Pages

    Hi zzfive03, I have a VB app where I print out the document and show it printing by page number. I have the following code in my print function to determine the pages of a PDF document. Set objPDFPages = CreateObject("AcroExch.PDDoc") Var = objPDFPages.Open(ofile)...
  8. kophjager

    Remove Menu Bar in Acrobat Reader

    Hello all, I have been referencing Adobe's 5.0 SDK to help me open a PDF document and have that working fine. I am using the AcroExch.App object to control the window where I open the document. I would like to be able to remove menu items from the menu bar but am having no luck doing so. I am...
  9. kophjager

    Open an Existing Document Based on a Template

    ...a document based on this template. The documents change, but I want the "DRAFT" to appear in the background all the time. I tried using a *.bmp but I guess when I have a table in a document, WORD XP does not like it and bumps out the *bmp pic. I sometimes have tables in docs thats...
  10. kophjager

    Need help with Auto-Counter in Access 2000

    Thanks polljoh. Worked like a charm!
  11. kophjager

    Need help with Auto-Counter in Access 2000

    Hello all, First off I would like to thank anyone who may be able to help me. I have one table, Increment, that has two fields, Field1 and Field2. I want Field2 to increment itself whenever I do a select query to access it's stored value. So if I say 'Select Field2 from Increment'and get 5...
  12. kophjager

    JDBC Connection

    Cheech, I have system dsn setup in that points to my Access database. I still cannot seem to figure out why it is not working. The error that I get verbatim is "[Microsoft][Odbc Driver Manager]Data source name not found and no default driver specified." I have the connection name...
  13. kophjager

    Trying to Understand .ASP and Database Access

    Thanks ToddWW and baddos, I think I am going to just try and develop with ADO. From what I can see it does seem to be a little better and the asp.net seems to use ADO also. Thanks all for the insight.
  14. kophjager

    JDBC Connection

    ...exactly in the help menu, does anyone know if there is some trick to get this working? If I cannot get it working I am going to be working in *.asp pages( just trying something new), and if I do that does someone know of any good resources for an average experienced user to look at using ODBC...
  15. kophjager

    Trying to Understand .ASP and Database Access

    From what I have been reading, ADO and ODBC are both object based API's. I know ADO is probably much, much easier to use, but I would like to learn how to program at a closesr level to the database. That's I guess what I am looking for iis ODBC information. I was wondering if anyone knew how to...
  16. kophjager

    Trying to Understand .ASP and Database Access

    Hello all, I have been confused for a few days now trying to understand the flow of information between web pages and databases. I've been looking into developing ASP pages and interacting with an Access database. I need to do this on IIS 5.0 and want to code my connection and queries to the...
  17. kophjager

    Copying Database to new Location

    ...I am wondering if this is possible and what files I would need to copy to the new Location. I did do a search on my computer and came across two *.ora files, both with Journal in the file name and some other *.trc files. I do not know if those are all I need or what. Please forgive my...
  18. kophjager

    Multiple Insert using Javascript into Oracle database

    Thanks Cheech. I am working on developing something, it is just the dreamwevaer variables that confuse me. Also it makes no difference to me if I do all the inserts at once or go from page to page and do an insert and just show a Processing image or such, but if I were to go page to page, is...
  19. kophjager

    Multiple Insert using Javascript into Oracle database

    Hello All, I need some help. I seem to have hit a stone wall. I need to do a multiple insert statement into an Oracle database using javascript in my pages. I was trying to do it all one page if possible. What I am doing is pulling in up to three seperate recordsets into hidden fields on a...

Part and Inventory Search

Back
Top