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 Chriss Miller 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. bvoelp

    Outlook as a sendmail client

    Thanks, I have 1/2 of it working - I can send via Outlook (2K) through sendmail. I still can't received - but I think the problem is in authentication.... I will also look at the qpopper, but I think it is running... Bruce Voelp bvoelp@if.rmci.net Earn AS in 1976 and BS in 1986. Learn to...
  2. bvoelp

    Outlook as a sendmail client

    Is it possible to configue MS Outlook 2k to be used as a mail client for a LINUX sendmail server? If so how? Really appreciate any help with this.... Bruce Voelp bvoelp@if.rmci.net Earn AS in 1976 and BS in 1986. Learn to talk with computers when the only interface was 80 column punch...
  3. bvoelp

    Outlook as a sendmail client

    Is it possible to configue MS Outlook 2k to be used as a mail client for a LINUX sendmail server? If so how? Really appreciate any help with this.... Bruce Voelp bvoelp@if.rmci.net Earn AS in 1976 and BS in 1986. Learn to talk with computers when the only interface was 80 column punch...
  4. bvoelp

    What the !@#$ does it take to get a working install package?

    Mu suggestion is to use a third party installer such as InstallShield Express, WISE, etc. The installation wizard that ships with VS is full of holes. It takes alot of trial and error to install and sort of comlex application (one with 3rd part OCX/DLLs, etc). My experience has taught to...
  5. bvoelp

    Winsock & Parallel Port

    Actually, I wasn't suggesting using MSCOMM - it only works for serial ports - best used for modem communication - but does work for serial data transfer - very slow and length limited. I also wanted to point out that WinSock is TCP/IP or UDP based and won't work with a hard wired port like LPT1...
  6. bvoelp

    winsock vb to telnet session

    Sounds like you are getting the IP addr of the connection. Have you tried reading further - are you placing the GetData in the DataArrival event? Do you have the get data set to vbString? Here is the code from the VB Help file example on GetData Private Sub Winsock1_DataArrival _ (ByVal...
  7. bvoelp

    Winsock & Parallel Port

    Only if the parallel port can support TCP or UDP which I seriously doubt. I have used the MS Comm Control in the past to communicate via serial ports. I have never tried to use the parallel port. I cannot find any reference to using the parallel port in MSDN in the Visual Basic topic area...
  8. bvoelp

    cpu load and time spent in a process

    I am fairly new at LINUX myself - used UNIX about 10 years ago. I am getting the command line stuff out of the cobwebs, but in the mean time I have found WebMin an invaluable tool. There web site is http://www.webmin.com/webmin/, they have both installs available - it is a web based tool that...
  9. bvoelp

    VB Reading CMOS Clock and setting Windows clock

    This will require use of the Win32 API functions. There are several that deal with time. One in set particular that might help you out are GetTickCount, GetSystemTime, GetSystemTimeAdjustment, SetSystemTime, and SetSystemTimeAdjustment. These API are rather simple to use. Accessing the RTC...
  10. bvoelp

    quick icon question

    You are correct - to use the Form.Icon property you need a legitimate icon file. I use a shareware edit to create icons or transform bitmaps into icon. Here a URL to the reviews - also has the download link - it's only $20US - and it works great - I've used it since version3.0 now it's at...
  11. bvoelp

    Quick Question

    That's the problem - the additional controller is not recgonized by Mandrake, Caldera or RedHat and the vendor does not plan to suppor LINUX - unforntunetly they won't take a return for that reason and I can't afford another one right now - I got past the problem - I put the controller in an NT...
  12. bvoelp

    FTP - PASV

    What settings are necessaru for FTP to be opened to passive connections? I can't find any reliable refernces anywhere. I would appreciate any help I can get on this. <p>Bruce Voelp<br><a href=mailto:bvoelp@if.rmci.net>bvoelp@if.rmci.net</a><br><a href= > </a><br>Earn AS in 1976 and BS in...
  13. bvoelp

    Quick Question

    Actually - NO - according to RedHat tech support - only if the ATA66 drive is on the main IDE channels, then you need to get a third pary driver <p>Bruce Voelp<br><a href=mailto:bvoelp@if.rmci.net>bvoelp@if.rmci.net</a><br><a href= > </a><br>Earn AS in 1976 and BS in 1986. Learn to talk with...
  14. bvoelp

    Quick Question

    Does RH7.0 support ATA66 Hard Drives? <p>Bruce Voelp<br><a href=mailto:bvoelp@if.rmci.net>bvoelp@if.rmci.net</a><br><a href= > </a><br>Earn AS in 1976 and BS in 1986. Learn to talk with computers when the only interface was 80 column punch cards, and paper tape.
  15. bvoelp

    Problems with Visual and SQL!!!

    Try setting the .QueryTimeOut property of you db or query object to 0 (zero) <p>Bruce Voelp<br><a href=mailto:bvoelp@if.rmci.net>bvoelp@if.rmci.net</a><br><a href= > </a><br>Earn AS in 1976 and BS in 1986. Learn to talk with computers when the only interface was 80 column punch cards, and paper...
  16. bvoelp

    Visual Basic 3 problems!!!

    Question 1: Try searching you &quot;C&quot; drive for the file Question 2: Use this code when in the Form Load event Me.Left = (Screen.Width - Me.Width) / 2 Me.Top = (Screen.Height - Me.Height) / 2 or but the following function in a code module Sub CenterForm(frm As Form)...
  17. bvoelp

    Linux box on NT Domains

    kb244 - It appears you might be correct, I can see all the machines in the domain from Samba with smbclient -L <PDC>. I was also able to monut a print with smbclient //<NetBios>/<Sharename Printer. I am switching to a newer version of Linux, maybe that will clear up my issues. Thanks for the...
  18. bvoelp

    Linux box on NT Domains

    I have a small LAN run by an NT Server as a PDC. I just installed Calder Linux 2.2 and what to use it as a WEB-Server and my LAN. I have Samba starting at boot, successully (I think, got a .mac file on the LINUX box anyway), join the dom with the command smbpasswd -j <DOM> -r <DOMPC>. Altered...
  19. bvoelp

    Saving inormation from a List Box

    Just thought of something else that might help. If the user is selecting the item from a listbox then all you need to do to get the response is use the ListBox text property.<br> <br> strListData = ListBox.Text<br> <br> This will return the current selected item in the listbox. <p>Bruce...
  20. bvoelp

    VB3: Type...End Type in (declarations) procedure of (general)

    It sounds like you are trying to put the type declaration in a form. Type delcarations must be defined in a code module. <p>Bruce Voelp<br><a href=mailto:bvoelp@if.rmci.net>bvoelp@if.rmci.net</a><br><a href= > </a><br>Earn AS in 1976 and BS in 1986. Learn to talk with computers when the only...

Part and Inventory Search

Back
Top