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 wOOdy-Soft 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: *

  • Users: sramey00
  • Content: Threads
  • Order by date
  1. sramey00

    pdf api

    hey all, i'm looking for some direction as to where i can find information regarding the adobe pdf api... basically i want to write a prog to automate the removal of multiple pdf's passwords. i have adobe pdf 7.0 installed. will that have installed the references for vs.net?
  2. sramey00

    excel opened successfully

    hello, I have some code that reads a tabbed delimited text with a file path to an excel document and also the password which opens that doc. the script is to open the excel file and save it to a different location without a password. It's working now and I am adding error logging incase the...
  3. sramey00

    recursive loops and counting

    i am using a recurisive loop that counts all items in the folders. when it completes, i would like it to give me a total count. Sub ProcessFolder(ByRef StartFolder As Microsoft.Office.Interop.Outlook.MAPIFolder, ByRef RootFolder As Microsoft.Office.Interop.Outlook.MAPIFolder) Dim...
  4. sramey00

    change password via vba

    I am on the right track here, however i can't get the database to open exclusively to allow password changes. can any point in the right direction? On Error GoTo errorhandler Dim strDbName As String Dim strOLDDB As String Dim strNewDb As String Dim y As Integer Dim acc As New...
  5. sramey00

    dtermine access DB version

    i would like to determine the version of access the database was created with. i tried using getobject("c:\...").version but that returns the current installed version of access. any help? Mr. Steve
  6. sramey00

    unset password / multiple database

    I have multiple mdb databases and i need to unset all the passwords in them. does anyone know of batch decrypters or some type of code i could write to unset the passwords without having to manually unset them? Thanks! Mr. Steve
  7. sramey00

    restore groupwise to different machine

    I have some arcserve backups i am trying to restore using acrserve 9.0. when i try to restore them to my local machine (not the groupwise server backedup from) the last result states "crashed" but gives no explanation. can anyone direct me how to restore to a different machine outside the...
  8. sramey00

    automate save pdf from report

    I have some code to create a pdf from an access report. this works fine, however, i need it to save the file automatically. here is my code: 'save default printer information to return to normal when done printing Set OriginalPrinter = Application.Printer 'set pdf printer Set...
  9. sramey00

    Access VBA queries

    I am new to programming access w/ vba and i was wondering if i could get a push in the right direction. I have a table in my database which i need to retrieve information from. the part i am a stuck at, is how do i access this table (cases)? I eventually want to take every record from the db...
  10. sramey00

    external script - Count all items - multiple PSTs

    hello all, main question: does any on know any good books about programming with vb (vbscript, c#, c++) and viewing the contents of a PST file? (or websites) my problem is i constantly deal with PST files of all different sizes from many different users. I would like to write a script / small...
  11. sramey00

    determine when email was opened

    Is there a way to determine when an email was opened by a user on the computer? I have only found the modified, created, sent, received date/time fields. these aren't what i need. ex. If i received an email on 1/1/2001, and i looked at it on 1/2/2001, where could i find that date (1/2/2001)...
  12. sramey00

    export folder w/ date & time

    using the import/export feature, i can export a folder successfully to an excel/access database. however, i need the date and sent/received time of the email to be exported. inside my database i will run a simple query to search the list of emails with a list of search terms. using the date...
  13. sramey00

    Translate Data to differnet language

    Does anyone know of a tool or a way to translate data in an sql server database AND an oracle database? i want to translate the data from german to english in both databases. I have tried searching google, but no luck. Thanks Mr. Steve
  14. sramey00

    import .msg into a .pst

    I want to import .msg files into a .pst file. Is this possible using vbscript? I think I would want to use the MAPI object... can anyone point me to a good FAQ on this? Thanks Mr. Steve
  15. sramey00

    dynamically change iframe src

    i have a lnkbutton in a datagrid. commandname = viewpage commandargument = http://(url) when the link is clicked the datagrid onitemcommand is called and i want to set the attributes of the iframe source to the commandargument. if (e.commandname == "viewpage") iframe1.attributes["src"] =...
  16. sramey00

    data grid as user control

    I have a data grid as a user control. when a new record is added to the database on the main page, i would like to refresh the user control (data grid) to display that value. normally when i modify the record of the datagrid, i would do a listcontents() function after the datagrid...
  17. sramey00

    .COM web broswer

    I'm doin somethin a little crazy with a web app... i want to link a data grid's links to a web browser. the incorporated web browser is a .com object i loaded into my webform. i now want to know where i can find information on this .com object cuz my searches are turning up nothing. can any...
  18. sramey00

    where column in ( two + values here )

    im trying to search a string a db gather the needed information and then query another db for the records that match the information. i can obtain the first set of data fine. up to the print line works... looks like 1259,1333 however when i try to use that in the second select statement, i...
  19. sramey00

    script to open any file

    im having trouble trying to open a file. it exists on the server and through asp, im creating a form with a radio button. click the button and that file opens inside it's program. (file name is dynamically assigned to the buttons value) intially i tried using the...
  20. sramey00

    radio array

    Got an odd problem here. i have a radio array generated from server side. it queries for a filename and assigns that to the value of the radio control. im using vbscript to access the array from the clientside to (as for testing purposes) msgbox the filename (or value) to the screen. problem...

Part and Inventory Search

Back
Top