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 TouchToneTommy 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: Killa
  • Content: Threads
  • Order by date
  1. Killa

    subscript out of range

    I am getting a subscript out of range error when i redim the pdf_index array. what anm i doing wrong ? Thanks killa Sub get_issues() Static x, y For i = 0 To File2.ListCount PDF_file_issue = UCase(getissue(File2.List(i))) no_hit = True For j = 1 To arraymax If...
  2. Killa

    orinatation of a document

    how do u find out if the document is landscape or portrait
  3. Killa

    printing error trapping

    Hi i am doing a small print routine that prints out word files to a postscript file this works fine until i get an error this causes the program to halt. Can i trap this error? so the program will run with out stopping. THE ERROR IS : The margins in section 1 are set outside the printable...
  4. Killa

    shell execution of batch files

    if i launch a batch file a = shell("batch.bat para1 para2") How can i tell programmically if the batch file has finished processing ? Any help would be much appreciated
  5. Killa

    program finished processing

    If i start a Batch file with a = Shell( batchfile) how can i tell if the batch has finished processing. i read that shell returns the task id of the process but can't find how to check if that task id still exist
  6. Killa

    File Closed

    Is there a way to see if a file has finished being written to? Back Ground I'm writing a program in visual basic to monitor a windows directory then process any files that appear there but it must ensure that the file has finished being written before proceeding any help would be much...
  7. Killa

    Tables in word

    Is there an easy way of identifying tables? can tables be named ? i want to create and edit a set number of tables using vba I have a button on the document for each table which opens the relevant form but i need to the data from table into the form and visa versa, this maybe done several...
  8. Killa

    How do i pass a string to an exported function ?

    i have coded the function in c++ like this #include <string> using namespace std; #define Dllexport _declspec(dllexport) Dllexport string _stdcall reversestring(string instring); Dllexport string _stdcall reversestring(string instring) { return instring; } the function call in VB...
  9. Killa

    Coding DLL files

    Can anyone recomend a good tutorial on creating DLL files with a veiw to using the functions in the contained within the files IE making a call to a function within a compiled dll file or does anyone know the basics of what is involved ?
  10. Killa

    Finding tables

    Is there a way of finding the table name or index from a selection IE I want to Add rows to a series of tables but to do it i need to know what table is selected so i know what format of row i need to append
  11. Killa

    error 3027 Help

    I am having a problem i think its to do with the access database security i open a new recordset as below on my computer this allows me full access to edit the newly created recordset BUT if i run this on another computer i get the 3027 error I've checked the file and folder permissions...
  12. Killa

    error 3027 HELP HELP AND DOUBLE HELP

    I am having a problem i think its to do with the access database security i open a new recordset as below on my computer this allows me full access to edit the newly created recordset BUT if i run this on another computer i get the 3027 error I've checked the file and folder permissions...
  13. Killa

    sending data to open applications

    How do i send data from my application to another application that i did not start programmically Ie i want to write a series of keys to an application that is already open how do i ascertain where to send the data
  14. Killa

    Recordset type mismatch

    why do i get TYPE MISMATCH if i declare rscopytable ? Dim dbnames As Database Dim RScopytable As Recordset Set dbparts = OpenDatabase(&quot;L:\Part & Drawing Registers\database\parts.mdb&quot;) Set RScopytable = dbparts.OpenRecordset(dbparts.TableDefs.Item(1).Name) i want to get the...
  15. Killa

    getting tables details

    Is there a way of getting the table info from a ms access database i need to get the quantity of tables and the names of these tables i open the database like this Set dbpartnumbers = OpenDatabase(&quot;L:\Part & Drawing Registers\database\partnumbers.mdb&quot;) Debug.Print...
  16. Killa

    database integration

    How do i specify an object as a database with vba in excel. this is the line i expect would normally use dim dbinfo as database Unfortunately i can not find the &quot;database&quot; type available I am trying to use excel to update a access data base but the users will not have...
  17. Killa

    Imgedit controls under XP

    Does anyone know where the ability to display & annotate Tiff files is under XP AS imaging has been removed from XP aand XP displays tiff files itself. Does anyone know what controls now hold the abilty to display tiff files?
  18. Killa

    closing applications

    How do you ensure that all the forms that were launched during an application are closed. I want to close all the forms that are launched when I close the main form Thank for your help Killa
  19. Killa

    Launching Default Application

    Does anyone know how u launch the default application for a file. I.E. I click on a tif file and the default veiwer lunches I am only dealing with one filetype I.E. tif files but due to the fact that the software needs to run on differing windows environments where the viewer program...
  20. Killa

    Is it possible to dynamicaly build

    Is it possible to dynamicaly build popup menu's so that the options on the menu alter dependant what is clicked

Part and Inventory Search

Back
Top