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. Zejjeu592

    Questions about NTFS

    Thanks, exactly what I was looking for!
  2. Zejjeu592

    Questions about NTFS

    Hi, I'm thinking about converting my FAT32 partition on my computer running windows XP pro to NTFS, but i have one question. I have another computer running windows 98 networked with it, and i wasn't sure if i would still be able to acess shared files from the NTFS drives. Anybody know the...
  3. Zejjeu592

    Problems with winlogon.exe

    yea, already did that, thanks again
  4. Zejjeu592

    Problems with winlogon.exe

    hey, Sorry about the late reply, been kind of busy lately. Thanks for the help, the reinstall worked perfectly, didnt lose anything.
  5. Zejjeu592

    Problems with winlogon.exe

    Sorry, but the recovery console didn't help. I tried replacing winlogon.exe with the version from the cd, and it didn't work, same error. I followed the instruction from your second link, but it didn't help. I was able to access files on the computer that isn't working via my other computer...
  6. Zejjeu592

    Problems with winlogon.exe

    I tried the last known good configuration but it didnt work. I'll try those links. Thanks.
  7. Zejjeu592

    Problems with winlogon.exe

    I am having trouble booting my computer. When I start it up, winlogon.exe produces an error, something like "the instruction at 0x01038956 referenced 0x0000000f, the memory could not be 'read'" clicking OK restarts the computer. If i ignore the box and try to logon, i am able to see my desktop...
  8. Zejjeu592

    VB in PowerPoint !!!!

    i'm not sure if you can run it IN a powerpoint presentation, but you can run an application from powerpoint. click on an object on your slide, and got to Slide Show->Action settings. If you want to run the program when the user clicks the object, go to the Mouse Click tab. Then choose the Run...
  9. Zejjeu592

    how can I convert a string into a int?

    if you are using the String class (not a character array) you need to use the following: String str = "12345"; int i = atoi(str.c_str());
  10. Zejjeu592

    Operating System Creation

    I would like to create an operating system in C++. Nothing too complicated, maybe just an OS that can run and print something to the screen. Any suggestions on how to get started? Maybe some good tutorials online? Thanks
  11. Zejjeu592

    Wow, I haven't been here for a lon

    just thought Liquid K9 might like to know that £70 is about $112 US dollars
  12. Zejjeu592

    How to Run Java from VB?

    you could probably put the applet into a web page and then use the web browsr control to view the page.
  13. Zejjeu592

    Finding and Loading a "make" file into Visual Basic 6

    The make file itself should load fine. The problem you will run into is if you have forms in that project that are in binary format, not text, which is how VB6 does it. What you can do is open the .frm files with an older VB (if you have one) that uses the binary format and save the form file...
  14. Zejjeu592

    barcode labels

    I don't know of any barcode fonts, but i could be wrong. I think the best way to do this is to draw lines into a picturebox. This website http://www.howstuffworks.com/upc4.htm will help you figure out how wide to draw each of the bars. I used to have a .vbx control to draw bar codes when I...
  15. Zejjeu592

    randomize

    Yes, you would need to use rnd. The way you use it is: dim number as integer randomize timer number = rnd(highval) + lowval so, to get one of two message boxes when you click a command button, you would put the following code into the click event of the button: Dim number As Integer...
  16. Zejjeu592

    How to make CheckBox "ReadOnly" ?

    if you don't want the focus to change to another control, you could also set the value of the check box to 1, and then put chkbox.value = 1 into the click event of the box.
  17. Zejjeu592

    Vb3/Vb6

    vb3 is 16 bit, right? if so, what's different about 32 bit programming and 16 bit from vb3?
  18. Zejjeu592

    Vb3/Vb6

    thanks
  19. Zejjeu592

    Vb3/Vb6

    I have been programming in Vb 3, and am now getting Vb6. What are some of the differences between the two?
  20. Zejjeu592

    How can I play .avi movies in VB3?

    can i get the vbx online somewhere?

Part and Inventory Search

Back
Top