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

    Keep freehand drawing on screenshot

    My question is at: http://www.codeproject.com/script/comments/forums.asp?forumid=1646&select=1355459&df=100&tid=1355459#xx1355459xx If anyone can help me update a picture without losing what I drew with the freehand I'd appreciate it.
  2. iamjd

    Windows 2000 RDC console on Windows 2003 server??

    I am running Windows Server 2003 Standard SP1. I set up a DNS along with an AD. After which I was hoping to gain access to the system via RDC. When ever I connect to the machine whether public ip or nonglobally routeable ip, I get a Windows 2000 login prompt. I thought there was something...
  3. iamjd

    Authenticate over wireless network using http redirection

    I am looking into configuring my wireless network to authenticate a user without using any encryption. I want the user to be redirected to an http authentication screen once they try and access the internet. What method am I describing? Is this method only good with additional hardware such...
  4. iamjd

    Mirroring SATA drives

    I just purchased two HITACHI Deskstar 7K250 14R9463 160GB 7200 RPM Serial ATA150 HDDs and wanted to put these in RAID. I have been trying to find resources for information about different types of raids (0 and 1) and which is better. I am not really a gamer. More of a programmer/graphics...
  5. iamjd

    IDE and SATA?

    Will a Western Digital IDE HDD work with a SATA HDD? I was thinking about mirroring both hard drives for backup purposes. I am not sure if I can do this or not. Any suggestions?
  6. iamjd

    XP Install Fatal Error

    Each attempt that I try and install Windows XP Pro, I continually get a fatal error stating: Installation Failed: D:\I386\asms. Error Message: Data Error (Cyclic Redundancy Check). I am not sure why the install is doing this. I have tried to install it on multiple computers (using the same...
  7. iamjd

    Install problem

    For some reason the file vmm32.vxd file somehow disappeared. I tried reinstalling windows 98 and it did not allow me to do so. It said cannot install duplicate version of Windows 98 so I stopped trying. I then tried installing Windows ME and now I get a Generic install error stating: "Message...
  8. iamjd

    HD Failure?

    I left my computer on and came home hours later to find that it is not running the OS (perhaps it restarted) and the BIOS displays an error message saying, "Restart and select proper boot device or insert boot media in selected boot device and press a key." I found that my HD, a Western...
  9. iamjd

    HD failure?

    I left my computer on and come home hours later to find that it is not running the OS (perhaps it restarted) and has a message saying, "Restart and select proper boot device or insert boot media in selected boot device and press a key." I found that my HD isn't being recognized. I tried using...
  10. iamjd

    internet explorer password recovery

    I just created a gmail.com email account. I forgot the password and supplied no secondary email account and I typed a really crazy password reminder question/answer. Is there anyway to retreive my password. I am using the computer I used to create the account. I have logged in but I did not...
  11. iamjd

    Laptop video problem 1200-XL106

    I have a Compaq 1200-XL106 which has the Trident CyberBlade 3D graphics with 4 MB shared video memory. I found the specification from the companies website. http://h10025.www1.hp.com/ewfrf/wc/genericDocument?cc=us&docname=c00011276&lc=en I have been googling and haven't found any links that...
  12. iamjd

    In addition to my previous post on the 1dimensional array

    The following code should take the isbnSum variable and divide is by 11 and if the answer is evenly divided then it should return 1 to the isValid boolean. I am not sure on what technique or approach I should take in order to do so. Can someone possibly point me in the right direction...
  13. iamjd

    Adding values from 1dimensional array

    #include<stdafx.h> int main() { int isbn[10]; int isbnSum; int i; for (i=1;i<=10;i++) { printf("Enter digit # %d of isbn number.\n", i); scanf("%d", &isbn[i]); } for (i=1;i<=10;i++) { isbnSum += isbn[i]; } printf("Sum: %d\n", isbnSum); return 0; } Each time i run this...
  14. iamjd

    can't install Windows Backup Utility

    I have a .qic file from the backup utility prior to a clean install of Windows Me. I have been trying to install the Windows Backup utility but it doesn't appear in the Add/Remove programs under Windows Setup. What other alternatives do I possibly have? Or does anyone know why it isn't...
  15. iamjd

    Clear Screen

    I am trying to figure out how to clear the screen in a console window using Microsoft Visual Studios C/C++. I have tried using the header file conio.h and the function clrscr(); but that doesn't work. Any suggestions will be greatly appreciated.
  16. iamjd

    Currency format in text box

    I have tried to make my text box limited to only 1 decimal point with only two numbers after the decimal specifically for US currency. My code is: If (KeyAscii < 46 Or KeyAscii > 57) And KeyAscii <> 8 Or KeyAscii = 47 Then KeyAscii = 0 If txtPayRate.SelStart >= InStr(1, strText, ".") Then If...
  17. iamjd

    Export data to Excel spread sheet

    I have searched the internet for a tutorial on how to export data to an excel spreadsheet (.xls) file. I noticed there were components that looked like I could set up my own data chart similiar to excel, but even then, that wouldn't help me export the data. Can anyone point me in the right...
  18. iamjd

    Parsing - please help

    I have float number, 214.36, I want to take the second integral number which is "1". What method should I use to accomplish this? I have looked for things on parsing but can't find anything?

Part and Inventory Search

Back
Top