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 Wanet Telecoms Ltd 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: siumouse
  • Content: Threads
  • Order by date
  1. siumouse

    Checking duplilcate record

    I'm inserting many records and i need to valid no any duplicate record in table Then I write a SQL statement as below if not exists(select * from Poll where empno = @cEmpno and date = @dDate and termid = @cTermID and key = @cKeyID) insert into HrPoll (empno, date, termid...
  2. siumouse

    Disable Uppercase

    Does anyone know how to disable auto uppercase function on command window in VFP 9.0 Thank you!
  3. siumouse

    BITXOR

    I'm using VFP6 in office now, and I need to use the BITXOR() function, but with more than 2 expressions!, How to solve it ? e.g PROCEDURE MD5_H LPARAMETERS x,y,z RETURN BITXOR(X,Y,Z) Thanks a lot!!!
  4. siumouse

    Check login page

    I have write a ASP using ImpersonateUser method to valid the use login and password, the code is shown at below: Set oLogin = Server.CreateObject("001.ImpersonateUser") If not oLogin.IsValidLogon(cEmpNo, cEmpPwd, cDomain) then cMsg = "Incorrect password." else cMsg =...
  5. siumouse

    How to comfirm the Data source in VFP

    Hi to all, A Selection of Data Source Box is prompt when execute the below code. How to elimiate the message box? *------------------------------------------------------------* goWord = CreateObject("Word.Application") goWord.Visible = .T. oDoc =...

Part and Inventory Search

Back
Top