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

    Array of fields(checkboxes) to update

    PERFECT - told you I was looking at it too long! This group rocks!
  2. jkafer

    Array of fields(checkboxes) to update

    I'm stumped and I think I've just been looking at this too long and I'm missing something simple: I have an array of fields that I would like to update if the function is called. The array will change - that part is working the sample I'm going to show is after the array is selected I want to...
  3. jkafer

    Trouble with dynamic PHP created forms passing to JS

    I have a php page that creates forms (many on each page) with dynamically named parts. So each form and the submit button is uniquely named. What I want to be able to do is have the following javascript function run at the click of the button. So I need to pass the form & button name. I can do...
  4. jkafer

    Combo Box pass procedure to call

    Hey back at you! Hmmm - that didn't make a difference. I changed the call command to be this: Call Eval(strCmd) I just get a message that it can't find the name 'cmdWkSumAll' you entered in the expression.
  5. jkafer

    Combo Box pass procedure to call

    Sorry, there is a typo in my original code: strCmd = Me.Combo20.Column(3) Yes, I get this message: Microsoft Access can't find the procedure 'cmdWkSumAll' cmdWkSumAll is what is getting passed to the procedure. The cmdWkSumAll does exist, if I type it like this: call cmdWkSumAll - that...
  6. jkafer

    Combo Box pass procedure to call

    I have a list of reports/processes that are in a table. And I want to select from that list and call the procedure that I have associated with it. Here is some sample data: ReportName ReportFile Procedure Weekly Rpt rptWkSum cmdWkSumAll I have a combo box setup on my form. There are...
  7. jkafer

    Word Merge Document as Fill-in Form

    Is there a way to put an autostart macro on the merged document that would turn the protection on once it's been merged/sent? I'm hoping to email this out. I've tried to include the form (insert file - as mentioned in another post) in the merge document, but it unprotects it (loosing fill-in...
  8. jkafer

    Word Merge Document as Fill-in Form

    Does anyone know a way that I can have the best of both worlds here? I want to send a word document that is setup as a Fill-in form, but it is personalized with their Contact info & YTD numbers (the merge part), but the rest of the file/document is a "protected" fill-in form so that they can...
  9. jkafer

    copyfile IFileSystem3 2147024784 error

    I saw that error too, but the flash drives are mostly empty. The datafiles I am copying are 1-15 meg in size. The flash drives that I've tried are 2 and/or 4 gig.
  10. jkafer

    copyfile IFileSystem3 2147024784 error

    I know I have had this working, but for some reason I cannot get this code to work. I am trying to copy datafiles to a USB drive. It will make the folder, I can copy a small file to it using this code (see the copy of the wsca.ico file) to the folder on the USB. But when it comes to copying the...
  11. jkafer

    Get Form name= from a submitted form

    I know I've done this, but for the life of me I can't remember how to do it. I have 3 forms that will run the same update.php script. BUt depending on the "Name" of the form, a different ending response will be given. How to I get ahold of the name part of the form tag? <form name="KClose"...
  12. jkafer

    Combo Field Acting WEIRD

    Well, you're not going to believe why this is happening. Autocorrect is seeing frei being typed and automatically correcting it to Frei - which is the German word for Fri Freitag = Friday. On my windowsXP machine, I got the option to "Turn off Autocorrect days of the week". Who knows if I...
  13. jkafer

    Combo Field Acting WEIRD

    I have a data entry form, that has 2 combo boxes on it. These two boxes use the same query for data. It's a query of names (lastname, firstname). There are about 2500 names in the query. It is grouped (this happens if it's grouped or not) so that each name only appears once. They can be in...
  14. jkafer

    Publisher looses resizing of wmf files

    I thought I had seen a post about this here, but I can't find it. I am having a problem when I open some MS publisher files with some graphics that were placed in the original file. This happens mostly with .wmf graphics that have been placed, then resized in the document. What is...
  15. jkafer

    Application slows down on input of items sold

    I'm having a problem with an application that I wrote for a 4H garage sale. Here are the basics: Access 2003 - compiled into an mde Database is split, database is sitting on PC and shared Frontend is run off desktops of other computers We have up to 5 computers inputting data The...
  16. jkafer

    Dynamically select array and item in array

    Thanks! That is exactly what I was looking for. In case someone else is looking for this answer here is what I did: strTArr = 'arr' & objRec("Category") & '(' & objRec("Item") & ')' Eval(strTArr)
  17. jkafer

    Dynamically select array and item in array

    I have, what I feel a simple problem. basically I've been thinking about it too long today! I have 3 arrays - shown here very simply: arrA = array("A", "a", "X") arrB = array("B", "b", "X") arrC = array("C", "c", "X") I have 3 fields in my table - simply: ID Category Item 1 A...
  18. jkafer

    Autonumber field reset now has duplicates

    I have a database application that I have been running for 2 years now and all of a sudden the autonumber field reset itself and now has dublicates in it. Does anyone know why/how this happens? I have compacted/repaired the datafile, with no difference. I have copied the table, and the...
  19. jkafer

    Running a formula from a field

    Sure. This is an example of the table with the formulas. fldCon fldFormula A [fldOne]*[fldTwo]+[fldThree] B [fldOne]+[fldTwo]+[fldFive] C [fldOne]+[fldTwo]+[fldThree] ~~~~~~~~~~~ Column 1 is the linking item Column 2 is an example formula fldCon, fldOne, fldTwo, fldThree...
  20. jkafer

    Running a formula from a field

    I have a table with 30 rows of data, 2 fields. This table will connect to another table on 1 field, the second field contains the formula that I want to run on the fields of the other table. How do you 'activate' the formula that is in the field. The reason for doing this is that an iif...

Part and Inventory Search

Back
Top