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 Chriss Miller 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: CMcC
  • Content: Threads
  • Order by date
  1. CMcC

    Validating a form on a webpage that someone saves to their desktop

    Hi all. I have been racking my brain trying to figure out how to validate a form on a saved page (user saved the page to their desktop) where the dynamic variables are then saved as static variables? I am using outdated ASP classic, and I have to work with old Fox 2.o and Visual Fox data...
  2. CMcC

    Tableupdate:updates multiple rows, when only one row should be updated

    HI All. Working in vfp9, with SQL backend. Creating remote views. When a customer record is changed, the fields that were selected for change (say name and zip) are being updated multiple times for different 'customers'. so when I change a zip code to '88888' for that one customer, it varies...
  3. CMcC

    SearchString is "string" but db field is numeric. HANGS on lookup.

    HI all. Have a classic ASP page that takes a searchstring and looks in a table on the server and should bring back any records that are 'like' the searchstring. Something is going on to where the server just 'hangs' trying to find that data. Only thing I can think of is that the searchstring...
  4. CMcC

    Form with 2 actions, only one button

    Hi all. I have a form where the action is a link to a third party vendor for credit card payments. Within this form, I attach hidden variables and submit those with the action to the link. We want to start adding records to a table to let us know when a customer has "left" our site to go to...
  5. CMcC

    .Setall max length of textboxes to 100 in form w/PageFrame - possible?

    I have a form with 6 tabs on a pageframe, and would like to set all the maxlengths to 100 for all textboxes on the form without having to go into each and every tab and each and every textbox property to set. Is there someway to do it, sorta like closing forms all at once: lnFormCount =...
  6. CMcC

    Hyperlink within a Combobox

    Is this possible? I need to know where to find this info for the click event of the combobox: DO case case ALLTRIM(this.Value) = "TL-10" ** go to a website case ALLTRIM(this.Value) = "TL-11" ** go to a website endcase Any suggestions? Ive tried to google this but no luck...
  7. CMcC

    command buttons disappear after report form print

    This happens on XP only. Compiled in VFP 7 and vFP9 and acts the same in both. It appears as the report prints to the screen, even though I have noconsole after the print command, as well as talk off. The buttons reappear when mouse moves over. Really frustrating. Hot tracking not on and...
  8. CMcC

    Dropdown list - make the list longer to show more items

    What setting must I set in the ComboBox-Dropdown list to have the list appear longer, ie, show more items instead of having the users 'scroll' through the list? Right now, it only shows 7 items at a time. Thanks! Cmcc
  9. CMcC

    changing a form field value programatically before submit

    Hello. I have a form where the user will enter an amount, where the field that they are entering it in is a variable that will be passed to another URL. It is a number field (Currency). I would like to be able to add (.50 cent) onto the value of this field before the form is submitted. The...
  10. CMcC

    Changing a form value programatically before submit

    Hello. I have a form where the user will enter an amount, where the field that they are entering it in is a variable that will be passed to another URL. It is a number field (Currency). I would like to be able to add (.50 cent) onto the value of this field before the form is submitted. The...
  11. CMcC

    command window, used to keep last used phrases?

    Hello all. Somehow, something has been disabled in my command window. It used to keep a list of what had recently been typed, such as USE , then a dropdown would show of the recent tables used, and MODI FORM would list all the forms recently edited. Where can this be enabled? I have tried to...
  12. CMcC

    General field holds .pdf - Would like to force the pdf to print

    Hello. I have a general field that contains an adobe pdf. I have been trying to find out how to force the pdf to print if the general field is not empty. do I have to StrtoFile or something? Any suggestions are appreciated! Cmcc
  13. CMcC

    API call to print webpage from within VFP 7

    Hello all. I have a call to ShellExecute within my VFP 7.0 app that opens a PDF that resides on a website. here is that code: DECLARE INTEGER ShellExecute IN shell32.dll ; INTEGER hndWin, ; STRING cAction, ; STRING cFileName, ; STRING cParams, ; STRING cDir, ; INTEGER nShowWin...
  14. CMcC

    form controls toolbar shows in executable

    Hi all. What is the setting to turn off the form controls toolbar so it doesnt show in compiled executable? Users have 800*600 screens and this toolbar 'pushes' buttons down to where they cannot see them. Any suggestions? Thanks Cmcc
  15. CMcC

    report has printer defined within page setup, but doesnt print

    Hi all. Have something that Ive put off for a while that is bugging me. I have created 'letters' that print in a loop defined by date. Inside these letters I have a specific network printer assigned within the page setup of the report form. I had tested with printer PROMPT just to see if it...
  16. CMcC

    system restore with full backup, but didnt export contacts frm Outlook

    HEllo all. I helped a friend this weekend with his computer that had a virus. So I restored the system with a full backup of the previous OS to a directory under C:\_backup. I knew he used bellsouth.net and figured that all contacts were online. After the restore, he informed me that he used...
  17. CMcC

    Trying to 'code' a prebuilt template contact form

    Hi all. I am new to Photoshop but proficient with Dreamweaver. I purchased a prebuilt template from templatemoster.com. I was able to edit the text in photoshop and save for web, although Im stuck on how to edit the contact form they have 'imaged' into their psd file. When I try to edit in...
  18. CMcC

    disable submit button if some variable > 0

    Hello all. I have two asp pages: Calculation.asp Result.asp Result.asp is included in Calculation.asp by: %> <!--#INCLUDE FILE="results.asp"--> <% How can I have the submit button on Results.asp disabled by default, and enable (activate / unhide) it only if a specific asp variable (from...
  19. CMcC

    email address on form - help!

    Hi All - Just trying to make a 'hyperlink' on a form, but want it to go to an email address and invoke the email client. Ive tried to add a hyperlink label, but get syntax error when try to put 'mailto:emailaddres.com" in the click event of the label. Do I need to call createobject? and if so -...
  20. CMcC

    keep text field from auto inserting comma after 3rd number.

    Hello all. I have a form with a text field that expects the users to enter a currency value. I would like the field to contain NO COMMA's - as it messes up the query_string that is submited by the form. I tried: function removeCommas(str) { return str.replace(/,/g, ""); } and the...

Part and Inventory Search

Back
Top