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 bkrike 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
  • Content: Threads
  • 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

    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.
  4. 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...
  5. fgeorge

    urgent regular expression problem

    can someone urgently show me a regular expression to validate the format dd/mmm/yyyy? thanks
  6. 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...
  7. 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..
  8. 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
  9. 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 "0" and add 234.. so the number above becomes; 234803465... can someone show me how to do this? i need this done on all the...
  10. fgeorge

    regular expression question

    can someone give me a regular expression that ensures that something is entered into a textbox..be it numeric or characters
  11. fgeorge

    regular expression question

    i need a regular expression that will validate the following: 1)must contain 15 digits.. 2)all numbers must begin with 234803 3) must not be; 234803200 234803201 234803202 234803209 thx
  12. fgeorge

    sms and vb tutorials please

    i am new to vb /sms programming..can anyone point out a tutorial on developing sms applications with vb or java.. simple ones please?
  13. fgeorge

    manipulating varchar fields

    i get people to enter numbers into a particular field.. eg. 2345678.. how can i automatically remove the first digit of what they enter and replace it with +234? thanks..
  14. fgeorge

    logging bcp errors

    i am using bcp to load several text files into a table.. i understand that 4 for several reasons, my text files may not be loaded.. i how can i log these errors into another table if loading fails.. for example , i may want to put the first item in the tx file in another table plus a flag in the...
  15. fgeorge

    copy record from one table to another (identical)

    how can i copy a record with 15 fields from one table to another identical table withot having to do a LONNNGGG insert by passing 15 variables? any way round this?
  16. fgeorge

    Loading a text file with 3 fields into a table with 4 fields

    how can i load a text file with 3 fields into a table with 4 fields using bulk insert?
  17. fgeorge

    put select value into a variable

    i have created a select statement.. select a,b,c from xyz what i do next will depend on what is in the a field.. how do i get this value into a variable as i want to use it in a CASE Statement?
  18. fgeorge

    oracle date format to sql server date format

    how can i convert "20030806 18:00:00" , which is an oracle date format to a format that sql ser ver will accept in a datetime data field?
  19. fgeorge

    importing any text file found in a directory

    i have several text files in a directory that all begin with the words batch_registration.. the ending part of the file names is what differs as the date and time is appended to it.. how can i get sql server 2000 to search through this directory and import the files into a temporary table in...
  20. fgeorge

    disabling a text box based on a menu choice..

    i have a menu and a text box on the same page, in the same form, the menu before the text box.. i want to create a situation whereby, when i choose a certain option in the menu, the text box is disabled and cannot receive focus.. the text box will only be enabled when i select the other...

Part and Inventory Search

Back
Top