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

    OnChange event without submitting form.

    GUJUm0deL, Thanks again for you assistance. Your logic sounds good and it makes my job alot easier. I appreicate it. I wish there was more that I could offer people on this site. With more practice I will get there. Thanks, Emmett
  2. ewylam

    Form Action Question.

    Hi again, I have yet another question, however this one is not about code, just theory. Perhaps if I would have actually taken a programming class I would know this one. My question is: What do you fell is the best way to handle the action of a form? Example. I ave a form used to register a...
  3. ewylam

    OnChange event without submitting form.

    GUJUm0Del, Thank you for the help it worked perfectly. Perhaps you could answer thsi one for me. What do you fell is the best way to handle the action of a form? Example. The form above is to register a user to a site. I also need to use the form to edit a users info that has already entered...
  4. ewylam

    OnChange event without submitting form.

    Sorry here is the code... <cfset CurrentPage=GetFileFromPath(GetTemplatePath())> <cfif IsDefined("FORM.insertFormd") AND FORM.insertForm EQ "true"> <cfquery datasource="ExerciseWebApplication"> INSERT INTO Users ("Lookup to RankID", FirstName, LastName, "Lookup to GroupID", "Lookup to...
  5. ewylam

    OnChange event without submitting form.

    TruthInSatire, I inserted the code at the end of the submit button with an onclick event. The form refreshes (submits) but it doesn't change the value of the insertForm, thus not actually inputing the data into the database. Any suggestions?
  6. ewylam

    OnChange event without submitting form.

    Ok, I need some help here. I have a form with a couple of dropdown menus that are populated dynamically. The uses needs to select an option from the first menu before the second is populated with options. I have successfully complete this with an "OnChange" event and everything works fine. The...
  7. ewylam

    Select Next Frame

    I have a document that is a converted PDF file. All of the text has been separated into separate text Frames. I need my code to select certain frames and copy their contents into a database. My question is... how do I get VBA to select each frame in turn then after I am done copying the...
  8. ewylam

    MS Word to SQL Server Integration

    mmcshane, I am trying to do the same thing, output word info to an SQL Server database. If you have found any info on this please let me know. For your question: It has been a couple of years since I have programed in VB but If believe this is how it might work. In VB editor you create...
  9. ewylam

    Output Word Data to SQL

    Added the connection info... I still get an error unable to connect to data source. Sub FindSubjects() Dim varSubject As String Selection.Find.ClearFormatting With Selection.Find .Text = "A?.?." .Replacement.Text = "" .Forward = True .Wrap =...
  10. ewylam

    Output Word Data to SQL

    Tony, Thanks for the response. I am accessing an SQL Server 2000 The following is a Sub I was using to test if it was possible. I get an error if I use the "Update" statement in my SQL string. Sub FindSubjects() Dim varSubject As String Selection.Find.ClearFormatting With...
  11. ewylam

    Output Word Data to SQL

    I need help!!! I am a ColdFusion and database programmer but am trying to use VBA for this project. I have some VBA experiance but I don't knwo how to do this. I am trying to output selections from a Word document into various columns and tables in an SQL database. I have no problem pulling...
  12. ewylam

    Select Box Date

    Awesome Tony. Thanks alot that was perfect.
  13. ewylam

    Select Box Date

    How can I have selection boxs within a form only show dates that are in between two dates pulled from a database? Any suggestions?
  14. ewylam

    Radio Button Value

    Thanks... I figured that out just before you sent you post. I just deleted all the url bs, and used the form. Thanks again.
  15. ewylam

    Radio Button Value

    Thank you for your quick responses. However I am still haveing problems. I did the DUMP and it shows that the (MSEL_Delete, Input_Delete) vaules are what I put in the form. However in the URL of the page that does the delete they still show as "No". I tried to delete the <cfparam> tags but I get...
  16. ewylam

    Radio Button Value

    I have been staring at this problem for the entire day now and I still can't figure it out. I think it is a simple solution but I got nothing. What I am trying to do is pass the value (Yes/No) of two seperate radio groups (FORM.MSEL_Delete, FORM.Input_Delete) on through the url to a new page...

Part and Inventory Search

Back
Top