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 SkipVought 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: fgeorge
  • Order by date
  1. fgeorge

    client-server question

    i want to create a network ready app.. what i mean is there will be one database which all the clients connect to.. when i install the app on the workstations , will it automatically "detect" that it should not create a copy of the db on the client but "connect" to the db on...
  2. fgeorge

    encryption

    i have a password field in a table of mine. how can i encrypt this one field so that a select statement by any user will not expose the password? thanks..
  3. fgeorge

    Number of selected radio buttons on a form

    Thanks , let me try it out.
  4. fgeorge

    Number of selected radio buttons on a form

    given the below code, for initial radio button form : <INPUT onclick=&quot;display('s311');&#13;&quot; type=radio value=1 name=s311>1<BR><INPUT onclick=&quot;display('s311');&#13;&quot; type=radio value=2 name=s311>2<BR><INPUT onclick=&quot;display('s311');&#13;&quot...
  5. fgeorge

    Number of selected radio buttons on a form

    i tried this and i get an error that it can't find length or something ...... the functions that change 'the colours in the first place are in the header of the main document.At runtime i pass a temporary value to it so that it displays the color i need .(these are the functions : function...
  6. fgeorge

    Number of selected radio buttons on a form

    but onload will take the page back to its initial state.. right? it cant &quot;remember&quot; which radio buttons were selected..
  7. fgeorge

    Number of selected radio buttons on a form

    tope, u cant maintain state between page refreshes.. pass the variables to a different but similar page..
  8. fgeorge

    Number of selected radio buttons on a form

    thanks for the post i will try it out now. but on which event would i put it . what i am actually trying to achive is so that when a page is refreshed i determine which radio buttons are selected and assign a colour to them in another cell... the issue i had before when i put the color function...
  9. fgeorge

    Number of selected radio buttons on a form

    I have several groups of radio buttons on a form how can i loop through all thge radio buttons and determine which ones are selected.
  10. fgeorge

    Firing a function for all radio buttons selected on page refresh

    i have a function that changes the background colour of a cell based on a paramiter value parsed by a radio button. This function fires on the 'onClick' event of each radio button.It accepts a parameter . When i refresh the page I want the function to run by checking all the radio buttons in...
  11. fgeorge

    urgent regular expression problem

    thanks.. but what i want to match is dd/mmm/yyyy not dd/mm/yy
  12. fgeorge

    urgent regular expression problem

    can someone urgently show me a regular expression to validate the format dd/mmm/yyyy? thanks
  13. fgeorge

    urgent trigger problem

    i want the change to be made as soon as the record is inserted..
  14. fgeorge

    urgent trigger problem

    i want to create trigger at the row level to modify a field in each record that is inserted.. i do not have a primary key on my table... the code that doesnt work is below.. CREATE TRIGGER tr_msisdn_ProcessedRedemption ON ProcessedRedemption FOR INSERT AS UPDATE ProcessedRedemption SET msisdn...
  15. fgeorge

    .net installation hangs

    i am installing dotnet framework 1.0 on a win 2000 box but it keeps hanging on enterpriseservices.dll very near the end..
  16. fgeorge

    binding recordset values to a multiple choice list box

    i have a field which has multiple choice values which were chosen from a list box . how can i automatically select these on my update form? i use dreamweaver mx.. thanks
  17. fgeorge

    trigger/string manipulation question

    thanks jameslean, i think i do need a trigger though as i want this transformation done when the data is inserted into the table.. i dont want my users entering 23480.... i want them to enter 0803... but the info is to be stored as 234803... how do i turn your code to a trigger? thanks
  18. fgeorge

    trigger/string manipulation question

    i have a field in my table that contains varchar data..all the data should begin with 0803465... i now want to create a triger where i will trim the leading &quot;0&quot; and add 234.. so the number above becomes; 234803465... can someone show me how to do this? i need this done on all the...
  19. fgeorge

    Ulta Dev List Box in Update Form

    i think it works now.. thanks cheech..
  20. fgeorge

    Ulta Dev List Box in Update Form

    what i mean is this.. i have an update form with drop downs populated from a database.. how do i get those drop downs to automatically select the value that is chosen in that recordset?

Part and Inventory Search

Back
Top