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 bkrike 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: BigDaz
  • Content: Threads
  • Order by date
  1. BigDaz

    repeating ;'s. could this be a virus?

    Windows XP Pro SP2. Office 2003. About every 30 minutes for a length of 5 minutes (about) the character is ';' is repeated in Word and Outlook (whichever is open). other characters can still be written during this period. This is not the keyboard key getting stuck or similiar hardware issue...
  2. BigDaz

    2 com port problem.

    Hello, I have 2 RS422 ports on my PC that are each capable of 3 MBaud. These are all installed ok according to Device Manager. They both work individually but when using them at the same time, at quite a high data rate, the ports just lock up and nothing can get in or out. Could this be a...
  3. BigDaz

    adding to end of char array

    Hello, I wish to read in a string of chars into a char array then add a carriage return and a line feed to the end then send it elsewhere; i'm trying to do it in the following manner: char cMess[32] = {0}; GetDlgItemText ( IDC_EDIT1, cCom, 32); int iLen = strlen( cCom ); cCom[iLen] =...
  4. BigDaz

    XP on Second Partition problem with Norton AntiVirus

    hello, I have windows ME on the C: drive and XP installed on the D: the problem is that even though i can install Norton antivirus on the XP partition fine, and even scan files and folders with it i can't open up the program, and the task bar icon goes after i try. i can install and use it...
  5. BigDaz

    CList problem

    hello, i'm trying to this: CList< int, int > listy; but i just get errors, what do i need to do to be able to use like that? cheers, bigdaz
  6. BigDaz

    can't see printer on XP machine

    i had four win98 machines on a network, one had a local printer installed and the others printer from this printer via that PC, winXP has since been installed on the printing PC but now none of the PCs can see the printer even though it set up as shared any guesses? cheers, BigDaz.
  7. BigDaz

    8 data streams into one

    hello, i have a problem where i have data coming in from 8 eight serial ports and i want to get that data and put into one data stream to be sent via tcp/ip over ethernet. please could suggest/outline a possible solution for this? each serial port and the tcp/ip link are handled in their own...
  8. BigDaz

    Stop the Geek using Classic Style

    At work i have to share a PC with a complete geek who insists that WindowsXP has to run in classic style, is there any way i can lock it into a style that i choose? The geek changes it by using System Properties->Advanced->Performance->Settings->Visual Effects->Adjust for best performance...
  9. BigDaz

    Preference Locking?

    hello, is there anyway that once i have set the visual preferences (i.e. background picture, windows and buttons style) that i can lock them so that no one else can change them? cheers, BigDaz.
  10. BigDaz

    Visual C++; Win98 to WinXP?

    Hello, I have recently changed from Windows 98 to Windows XP Pro, and have installed Visual C++ 6.0 on it. I had written a program that transfers data from one PC to another using TCP/IP over ethernet. In windows 98 the data transfer data is much higher than when using windows XP even though...
  11. BigDaz

    Visual C++ : Win98 to WinXP

    Hello, I have recently changed from Windows 98 to Windows XP Pro, and have installed Visual C++ 6.0 on it. I had written a program that transfers data from one PC to another using TCP/IP over ethernet. In windows 98 the data transfer data is much higher than when using windows XP even though...
  12. BigDaz

    select failure

    hello, in my program i had a function for Connecting, one for Sending, one for Receiving and one for Disconnecting. these were all in the main.cpp file. i moved these functions into their own class but now there is a problem. i can still connect, suppling the function with the TCP port and IP...
  13. BigDaz

    host IP address

    hello, how do i get the host IP address as a char string? thanks.
  14. BigDaz

    sockets pause problem

    win98 i have a client program that produces data (sometimes large amounts) then connects to a host program, then transfers the data. a value representing the total amount of data is first, the data is always in multiples of 200K bytes so the sending can be easly broken down. the following is a...
  15. BigDaz

    driver types?

    maybe in the wrong forum here, but someone might know. i have a device that sits on the ISA bus, it's kind of a data acquisition card. i want to write a driver for it to work on win98. which type of driver would be best for this task? a .wdm or a .VxD or what? can anyone help and give me a...
  16. BigDaz

    unsigned short array into char

    hello, if i have an array of unsigned short ints say: unsigned short usArray[1000]; this would consist of 2000 bytes, how could get those 2000 bytes into a char array? thanks, bigdaz.
  17. BigDaz

    data formatting

    if i have a 16-bit integer (i.e. 12345) and i want to send it via tcp/ip how can i send it as two 8-bit bytes and not as 5 char bytes (i.e. '1', '2', '3', '4', '5')? how can i format the integer before sending so that it takes up as little space as possible? thanks, bigdaz
  18. BigDaz

    formatting of data

    if i have a 16-bit integer (i.e. 12345) and i want to send it via tcp/ip how can i send it as two 8-bit bytes and not as 5 char bytes (i.e. '1', '2', '3', '4', '5')? how can i format the integer before sending so that it takes up as little space as possible? thanks, bigdaz
  19. BigDaz

    data formatting

    if i have a 16-bit integer (i.e. 12345) and i want to send it via tcp/ip how can i send it as two 8-bit bytes and not as 5 char bytes (i.e. '1', '2', '3', '4', '5')? how can i format the integer before sending so that it takes up as little space as possible? thanks, bigdaz
  20. BigDaz

    high data transfer rate problem

    hello, i am working on a LAN with a low traffic rate and i wish to be able to send large amounts of data almost constantly over a tcp/ip connection (between 200k and 800k per second), but only in one direction. i have writen a basic program (well two) to do this, but i have a problem. each time...

Part and Inventory Search

Back
Top