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 strongm 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. mohansekar

    What is the fastest way of search a record display in flexgrid?

    Hi, Why don't u try a SQL query using LIKE '%' bye Mohan
  2. mohansekar

    setToolTipText () in AWT ??

    Hi, No way to set tool tips in awt. :-( mohan
  3. mohansekar

    Startup API

    Hi justin, Thanx a lot. bye Mohan
  4. mohansekar

    How to send an e-mail from application

    Hi, Drop me a mail. I shall send u the zip file to u. My mail id :- mohan_sekar@yahoo.com
  5. mohansekar

    Startup API

    Hi all, Good day. Can anybody tell me how to start an application when WIN 95/98 starts without adding anything to the Startup Menu( like yahoo messenger and msn messenger ) Thanx in advance Mohan
  6. mohansekar

    FilePermission question

    Hi, You have to give permission to the files u r going to access through ur applet by mofifying the java.policy file. bye Mohan
  7. mohansekar

    accessing Scanner from vb

    Hi all, Could anyone help me in reading the scanner from vb using imgscan.ocx. Anyhelp is greatly appreciated. Thanx in advance :-) bye Mohan
  8. mohansekar

    What users are on the network?

    Hi, Here is the module for it. Enjoy Option Explicit Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) Private Type NETRESOURCE dwScope As Long dwType As Long dwDisplayType As Long dwUsage As Long lpLocalName As Long lpRemoteName As...
  9. mohansekar

    Help! Video capture

    Hi, can anybody tell me how to capture motion image from a webcam. Also, I wanna store the motion picture as .mpeg/.avi. Anyhelp is greatly appreciated. Thanx in advance bye
  10. mohansekar

    Help! Video capture

    Hi, Can anybody tell me how to capture motion image from a webcam. And, I want to store the video file as .mpeg/.avi. Anyhelp is greatly appreciated. Thanx in advance....... bye
  11. mohansekar

    multi-threaded client server

    Hi, U have to use threads and sockets for that..... bye (if u want code, I can send u sample programs.. Contact my mail id mohan_sekar@yahoo.com
  12. mohansekar

    executing a C call within java program

    Hi, Do u want to call u r .c file or .exe file. If u want to call an .exe file then u can use Runtime.exec(&quot;<filename with path>&quot;); If u want to use your .c file as it is, JNI(Java Native Interface) is the only solution. bye
  13. mohansekar

    TextArea alignment

    Hi, Could anyone tell how the set the alignment property of java.awt.TextArea with code please. It's very urgent thanx bye
  14. mohansekar

    Java as a service

    Hi, Create one batch file and add the following code in it. @echo off javaw <yourjavaclassfile> save the file and put it in the startup. Thing is done bye
  15. mohansekar

    Locking a Word document

    Hi Richard, Thanx a lot for the code. bye
  16. mohansekar

    Locking a Word document

    Hi all, Can anybody tell how to lock a word document i.e user will not be able to edit the document. Please don't say, set the READONLY prompt. It doesn't prevents the user from editing the document it restrict the user form resaving the same document. Help me plz..... m.
  17. mohansekar

    Ensure Numeric Data is not Entered into a Text Field

    Hi, copy and paste the following code in a module Public Function validate(KeyAscii As Integer) As Integer If KeyAscii = 8 Or KeyAscii = 46 Then validate = KeyAscii Exit Function End If If KeyAscii < 48 Or KeyAscii > 57 Then MsgBox &quot;Enter Only Numbers&quot;, vbCritical...
  18. mohansekar

    How do I clear a maskEditBox of its content...

    Hi, set maskedit1.mask= the mask value you have set like ##9999.99 bye
  19. mohansekar

    AbsolutePosition

    Hi, You should set the Recordset.cursorlocation, cursortype before using. Only if the cursor type is Dynamic then only Movefirst etc., will work bye
  20. mohansekar

    Sending objects

    Hi there, Can anybody tell me how to transfer an image from one m/c to another using winsockets. The image is of the type .BMP/JPEG. thanx in advance bye

Part and Inventory Search

Back
Top