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: *

  • Users: oconv
  • Order by date
  1. oconv

    Binary Files

    Hi If I have a file that contains data that are binary (ie written to with the Outputstream objects) , & I do not know what types of data is written in witch order (ie. I dont know if it is string or int , or in witch order) , is there any way of reading & converting the data in the file Hope...
  2. oconv

    MAPIMessage

    Hi Are there something wrong with this control or with me?? I have used both MAPISession & MAPIMessage. mySession.DownLoadMail = True mySession.SignOn mySession.DownLoadMail = True myMessage.SessionID = mySession.SessionID myMessage.FetchUnreadOnly = False 'do some...
  3. oconv

    Applet Restrictions & IO Question

    Hi , I have 2 different quistions : 1. On applet restrictions , it is said that applet cannot load libraries or define native methods - what does this mean ? 2.On Java I/O (binary read) , "The Intel processor instruction set demands that the lower byte of data is stored first & then the...
  4. oconv

    Java I/O

    Excellent !!! Thanx a 1000000 now - you will loop through your file until you get the EOF marker does the statment - String s = br.readLine(); read line for line so if your file looks like (where <crlf> = characters for charage return line feed): this is line 1<crlf> this is line 2<crlf>...
  5. oconv

    Java I/O

    Hi , I am very very very confused with Java I/O , there are a million classes to use for I/O , from what I could gather , the best for Byte Streams will be: to wrap FileInputStream in the DataInputStream for reading...
  6. oconv

    VB &amp; Telephones

    How can you record a telphone conversation , as soon as the phone is picked up - with VB - is it at all possible & where can one find some decent examples
  7. oconv

    Printing documents from VB

    How can you print Word Documents from VB ??? I tried ::: Dim MSWord As Object Set MSWord = GetObject(&quot;C:\My Documents\Test.doc&quot;) MSWord.application.PrintOut but I get a error that the method/property is not available because the document window is not active. Is there...
  8. oconv

    Recording Telephone Conversasions

    Hi Is it at all possible to do this in VB ?? If so - what do I need ? Is there a tutorial somewhere on the internet for this ? I want a VB - program to run in the background , & if the telephone starts rinning , it must start recoring & after the conversasion is ended prompt me if I wanna...
  9. oconv

    Mic Sound Recording

    I am trying to write a program that allows you to record sounds via your microphone & allows you to save it (like windows sound recorder). Where can I get a example of how to do this ??
  10. oconv

    Object Data Type Print Method ??H?E?L?P??M?E??!!

    Dim MsWordDoc as Object Set MsWordDoc = GetObject(&quot;C:\Test.doc&quot;) MsWordDoc.SaveAs &quot;C:\Test2.doc' ' this works but. . . . MsWordDoc.FilePrint 'does not work What the HELL are you supposed to use and even better does any documentation even exist for something like...
  11. oconv

    Auto Printing MS Word Docs

    Hi I have this -> CommandLine = &quot;c:\Program Files\Microsoft Office\Office\WinWord.exe c:\mydoc.doc&quot; Shell CommandLine, vbNormalFocus now instead of opening the word document , I want to print it automaticly , what is the best way of doing it ? Thanks :o)
  12. oconv

    Automatic dail-up connections

    Hi I made a vb program to go check your email (in Microsoft Outlook Express) every 2 hours , it works fine & go and look at my inbox & do whatever I want it to do , what I want to know , is it possible get the dial-up networking dialogbox , so that everytime my app wants to check my inbox , it...
  13. oconv

    mail controls

    mySession.DownLoadMail = True mySession.UserName = &quot;fdsf&quot; mySession.Password = &quot;fsdfsd&quot; mySession.SignOn mySession.DownLoadMail = True myMessage.SessionID = mySession.SessionID myMessage.FetchUnreadOnly = True myMessage.Fetch MsgCnt = myMessage.MsgCount...
  14. oconv

    mail controls

    Good day Im having a strange problem - I use the MAPI controls , everything works fine , I can read the mail , get the subject , sender all that stuff , but if I call the AttachmentCount function a 0(zero) gets returned , this happens wiht all the messages (And YES , my messages do have...
  15. oconv

    witch API to use . . . ?

    cool people , both ways work !!! thanks a lot
  16. oconv

    witch API to use . . . ?

    Ho-ho I want to prevent someone of starting 2 'instances' of the same progam! Is there some API(S) that I can use to help me with this (I have been trying to find em for a week now without any luck). At the moment I am just writing a txt file to the c drive & everytime you start the program it...
  17. oconv

    acess violation error

    Hi All, I'm not a regular C++'er , so maybe this will be easy. I have 3 classes Driver , Savings & Customer. Savings public inherits Customer. The varibles in Customer is CustNumber (char*) CustName, (char*) CustTelNo. (long) The...
  18. oconv

    access voilation error

    Hi All, I'm not a regular C++'er , so maybe this will be easy. I have 3 classes Driver , Savings & Customer. Savings public inherits Customer. The varibles in Customer is CustNumber (char*) CustName, (char*) CustTelNo. (long) The...
  19. oconv

    Page Clears

    Ok I have a php script that generates a html page with a form & sumit button (test.php) , now when I click on the subit button it submits a value via post method again to test.php Now php gets the value & put it in a file. A background process then checks in the file gets the value & starts...
  20. oconv

    Page Clears

    Hi Is there a command to clear a html page ? like : some html . . . . <? command that clears the page ?> thanks

Part and Inventory Search

Back
Top