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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by vijithamar

  1. vijithamar

    How to change SYSTEM short date format to "dd/MM/yyyy" at run time VB

    SORRY.. I WANT TO CHANGE COMPUTER REGINAL SETTINGS - SHORT DATE FORMAT Thanks
  2. vijithamar

    How to change SYSTEM short date format to "dd/MM/yyyy" at run time VB

    How to change SYSTEM short date format to "dd/MM/yyyy" at run time VB.NET. please help Thanks
  3. vijithamar

    Changing system short date format vb.net 2010

    How to change short date format to "dd/MM/yyyy" at run time. please help
  4. vijithamar

    PLEASE GUIDE ME, SQL SERVER + VB.NET RECORD LOCKING

    Thanks you, Jhaith.... this is a new lesson for me.. I solved the locking problem. i created a index with pagelocking option with batchid. now it is working Thanks Rigards
  5. vijithamar

    HELP ME... RECORD LOCKING PROBLEM

    sorry... it was "happening" Thanks... it was the problem with indexing. its working now bye.
  6. vijithamar

    HELP ME... RECORD LOCKING PROBLEM

    thanks for your replay There are some code within the loop i omitted... My problem is about locking. why all the records get locked once a single row is updated(when i=1). row level locking is not happing here... thanks
  7. vijithamar

    PLEASE GUIDE ME, SQL SERVER + VB.NET RECORD LOCKING

    Thanks for your reply This is a POS Program where BATCH Table is holding the available stock. All users are reading the batch table Continuously for knowing available stock, and updating the stock after each sale is made. the batch table holding many product's stock. and in one sale there will...
  8. vijithamar

    HELP ME... RECORD LOCKING PROBLEM

    HI please help me to change sql server locking option to TABLE LOCK to PAGE/ROW LOCK I AM USING .NET + SQL SEVER 2005 EXPRESS I tried like this :- cmd.Connection = Conn trn= Conn.BeginTransaction() cmd.Transaction = trn For i=1 to NumOfProd cmd.CommandText = "Update batch set stock="...
  9. vijithamar

    PLEASE GUIDE ME, SQL SERVER + VB.NET RECORD LOCKING

    HI please help me to change sql server locking option to TABLE LOCK to PAGE/ROW LOCK I tried like this :- cmd.Connection = Conn trn= Conn.BeginTransaction() cmd.Transaction = trn For i=1 to NumOfProd cmd.CommandText = "Update batch set stock=" & vqty & " where batchid=" & vid...
  10. vijithamar

    HOW TO READ SQL RECORDS EXCLUSIVLY....

    HI i am trying to read sql server records exclusive... but it is not working (sql server 2005 and vb.net) this is my code dim cmd As New OleDb.OleDbCommand cmd.Connection = Conn cmd.CommandText = "select batch.Stock from Batch WITH (XLOCK) order by BatchId" dim dataredr As...
  11. vijithamar

    LAST MODIFIED DATE DIFFERENCE AFTER COPYING FILE

    No like that only seconds are varying
  12. vijithamar

    file missing/Corrupt after reboot

    hi in my vb program, i am Creating/Copying the files. But some times the new created files are missing or Corrupt after rebooting the server its creates found.001/002... in c drive of the server. OS is WinXp and 6 pcs are in the network, i tried with formating the pcs but same problem...
  13. vijithamar

    LAST MODIFIED DATE DIFFERENCE AFTER COPYING FILE

    hai My 15mb .mdb file having last-modified-date 'Wednesday, November 22, 2006, 9:28:09 PM.' After copying the same file to another Pc through network the last-modified-date is changed to Wednesday, November 22, 2006, 9:28:11 PM. only 2 seconds difference this gives problems in my backup...
  14. vijithamar

    MSCOMM: SENDING & RECEIVING BINARY FILE PLEASE HELP...

    hi. please tell me about sending the data as packets
  15. vijithamar

    MSCOMM: SENDING & RECEIVING BINARY FILE PLEASE HELP...

    hi Thanks for ur reply suppose my file-name is 'amruth.exe' and size about 6,160,384 bytes. how to send the no of bites in a single time

Part and Inventory Search

Back
Top