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 Mike Lewis 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. siumouse

    Checking duplilcate record

    the value is come from a text file. i.e. I get a text file and insert into SQL table Thanks in advance.
  2. 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...
  3. siumouse

    Disable Uppercase

    Thanks Geoff Franklin - it works.
  4. siumouse

    Disable Uppercase

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

    BITXOR

    Mike, i think it does not correct because: bitxor(1, 1, 1) , result => 0 bitxor(bitxor(1, 1), 1) result => 1 *-- In fact, i want to write a MD5 encryption by VFP6, Anyone have a good idea ? Richard
  6. siumouse

    BITXOR

    In VFP 6, it only support 2 Expression Syntax BITXOR(nExpression1, nExpression2) Richard
  7. 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!!!
  8. siumouse

    Check login page

    I write a program for testing: <% Response.Buffer = false %> <script language=&quot;JavaScript&quot;> function timeout() { alert('Time out!'); document.location='no.asp'; } var tmr=window.setTimeout(timeout, 8*1000) </script> <% call delay01 %> <script...
  9. siumouse

    Check login page

    Thank George comment, But how to can set a verfiy time on login page (e.g loading a page over 8 sec, display a Time out message)
  10. 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(&quot;001.ImpersonateUser&quot;) If not oLogin.IsValidLogon(cEmpNo, cEmpPwd, cDomain) then cMsg = &quot;Incorrect password.&quot; else cMsg =...
  11. 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(&quot;Word.Application&quot;) goWord.Visible = .T. oDoc =...
  12. siumouse

    Mail from VFP to Notes

    Where I can find the code for mail from VFP to note ?

Part and Inventory Search

Back
Top