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 SkipVought 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. SteveD73

    Flip Flop Syncing

    Hello Apparently it's possible to synchronize two signals by using 2 flip flops. Can anyone show me how to code this? Do I have to first code a flip flop and then link them, or is there a better way to do it? Thanks in advance,
  2. SteveD73

    Floppy Disk Controller

    Hi, Im attempting to design a floppy disk drive controller for my project. The floppy disk controller needs to be able to read and write a FAT12 format disk. My question is, does anyone know if an official specification exists for the standard PC floppy disk drive? Also, I understand that...
  3. SteveD73

    Please help with error

    Hi, Im getting the following error in the XILINX Project Navigator: ERROR:MapLib:93 - Illegal LOC on symbol "w_clk" (pad signal=w_clk) or BUFGP symbol "w_clk_BUFGP" (output signal=w_clk_BUFGP), IPAD-IBUFG should only be LOCed to GCLKIOB site. How can I assign w_clk to a...
  4. SteveD73

    Redhat Speed

    How can I turn services on and off? Is some sort GUI available to do this? Thanks,
  5. SteveD73

    Redhat Speed

    No, I haven't installed the drivers from the nVidia website. Over the next couple of days I'll have a go at installing it. Thanks for the advice,
  6. SteveD73

    Redhat Speed

    Yes. The installation auto-detected my Graphics card and Monitor.
  7. SteveD73

    VHDL Newbie Question

    Hi, As your guess from this post im a newbie to VHDL so any help you can offer is great. Im intending to implement a 'Digital Phase Locked Loop' in VHDL using the 'Alliance Toolkit' for Linux. My question is, once I've got my VHDL code fully working how can I get it into the FPGA? I have an...
  8. SteveD73

    Redhat Speed

    Hi, As your guess from this post im a newbie new to Linux so any help you can offer is great. I've recently installed Redhat 9 on a PC and im using the X Windows interface. The problem is, it seems to run quite slowly. I've noticed it while loading the basic applications and moving windows...
  9. SteveD73

    ASP 2.00

    Hi I have a string which has the following format: 34-23 The problem is I want to add 1 to each of the digits, except for the hyphen, and then display the result on the screen. And another problem is that im using ASP Version 2.0. The code I've tried so far is: Dim byteChar Dim paramString...
  10. SteveD73

    Cannot connect

    Yeah im logged in as Administrator. When I installed Win2K I installed it on top of Win98. Would that make any difference. My dial-up connection is a simple Freeserve connection. It appears that only Internet Explorer can see external addresses.
  11. SteveD73

    Cannot connect

    I can browse the Internet using Internet Explorer.
  12. SteveD73

    Connection problems

    Hi I have a PC which is running Win2000 and it uses a dial-up connection to connect to the Internet. It is a stand-alone PC and so it does not have a network card. I can connect to the Internet without any problems but when I try and do any the following I get failures: 1) I cannot ping...
  13. SteveD73

    Cannot connect

    Hi I have a PC which is running Win2000 and it uses a dial-up connection to connect to the Internet. It is a stand-alone PC and so it does not have a network card. I can connect to the Internet without any problems but when I try and do any the following I get failures: 1) I cannot ping...
  14. SteveD73

    Sockets

    Hello I have 2 applications which talk to each other using sockets. I know the port number of each application. What I need to do is write an application that can listen in on the communications between the applications. Any idea on how I do this? Thanks
  15. SteveD73

    Camera SDK

    Hello Im interested in developing an image processing based system for the Compaq iPAQ running Pocket PC 2002. Does anyone know of any cameras that I could plug into the iPAQ? I would also need the SDK for the camera so that I could program it. Thanks
  16. SteveD73

    PrintDlg

    That works Thanks
  17. SteveD73

    PrintDlg

    Hello Im using the following piece of code to display the print dialog: pd.lStructSize = sizeof(PRINTDLG); pd.hDevMode = NULL; pd.hDevNames = NULL; pd.hwndOwner = hDlg; pd.Flags = PD_RETURNDC; pd.hInstance = hInst; PrintDlg(&pd); When I run my program in Debug mode all works fine. However...
  18. SteveD73

    CreateProcess

    Hi When using the following command under Windows 2000 I keep getting an Access Violation. Any Ideas on how to fix it? CreateProcess("c:\\agd620.exe", "", NULL, NULL, FALSE, CREATE_NEW_CONSOLE, NULL, NULL, NULL, NULL); Thanks Craig
  19. SteveD73

    CreateProcess

    Hi When using the following command under Windows 2000 I keep getting an Access Violation. Any Ideas on how to fix it? CreateProcess("c:\\agd620.exe", "", NULL, NULL, FALSE, CREATE_NEW_CONSOLE, NULL, NULL, NULL, NULL); Thanks Craig
  20. SteveD73

    reading file

    FILE *file; file = fopen("c:\\path\\filename", "rb"); if(file == NULL) { cant open file } while(!feof(file)) { unsigned char c = fgetc(file); if(c == users number) found it } Hope that helps. If you want more code then post a reply.

Part and Inventory Search

Back
Top