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 strongm 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. Laffalot

    Just Built Computer - Now serious problems

    Hi, I'm still in the Windows 98SE stone age so I'm not sure on this one. It sounds like your driver got screwed by the program. Perhaps it was trying to talk to the sound card direct rather than using the windows driver. It may have tried to communicate with your onboard sound chip instead of...
  2. Laffalot

    Backwards text boxes???

    Hi, Why thank you nonguru I'm pleased you think so. Also on another point, as this is a VB5 & 6 forum I wrote it for VB 5. Reason being it should work in both. The Replace & StrReverse commands kick out errors in my old version of VB5 and the original post never said what his VB version was...
  3. Laffalot

    Installing P II processor....

    Hi, Hi paparazi, thanks for summerizing my post ! Any Help, Yes/No let me know Regards ________________________________________ Is not a fool a wise man in his own eyes - Proverbs
  4. Laffalot

    Backwards text boxes???

    Hi, Ah good old fashioned programming problems. Your lines appear because the carriage return, line feed at the end of the line are being reversed. Try this modification to the code, I tried it here and it works ok. a$ = Text1.Text Text1.Text = "" For cnt = Len(a$) To 1 Step -1...
  5. Laffalot

    Backwards text boxes???

    Hi, I remember the good old days when you had to program code. Very soon they'll be a command for everything :-) . 10 SWITCHON computer(supress user input) 20 DESIGNPROGRAM (game,original,platform,level,lives=3) 30 MAKEEXE (install, selfextract,burn-cd) 40 SWITCHOFF computer(no prompts) In...
  6. Laffalot

    Problem with soundcard

    Hi, How fast is your system ? Is it possible that your system is being taxed to much i.e. internet connection, winamp, browser, background apps, virus checkers, firewalls etc. and then on top of that your processor has to deal with the mouse. try running winamp from a file on the disk and...
  7. Laffalot

    Installing P II processor....

    Hi, From what you say in your first post, that 'strange melody' as you put it sounds like a failure in a POST test. A Power On Self Test is carried out when you swicth on the PC. It tests the motherboard, video cards etc. If something fails then the computer beeps at you. What those beeps...
  8. Laffalot

    Password help

    Hi, Goto http://www.webattack.com/Freeware/security/fwpass.shtml and check out StarPW.exe(about 1/2 way down) This reveals windows ****** passwords. When you run the program, pick up the little cross-hair with the mouse (left button) and drop it on the ***** password. It Should then reveal...
  9. Laffalot

    OpenText Delimiter Problem

    Hi, There may be a way, but not that I can see with the OpenText method. I would run a quick conversion macro to load, strip and save the file. filefreeA=freefile Open "abc.txt" for input as #filefreeA filefreeB=freefile Open "xyz.txt" for output as #filefreeB While...
  10. Laffalot

    How to strip a $ sign out of a variable

    Hi, If you wanted them to stop entering the $ into the input box then use [COLOR=blue] Private Sub Text1_KeyPress(KeyAscii As Integer) [COLOR=black] If KeyAscii = Asc("$") Then KeyAscii = 0 [COLOR=blue] End Sub [COLOR=black] This is in the Keypress event of your text box. when they...
  11. Laffalot

    problem with array ("Seine" by Ellsworth Kelly)

    Hi, Without going into to much of your program, I would go about it this way cls screen 9 d = 4 dim a as integer dim b as integer dim y(0 to d) as integer for a=0 to d:y(a)=0:next a 'to clear the array dim x as integer dim q as integer . . . Retry: b =...
  12. Laffalot

    PCI Slots.

    Hi, Are there any beeps when you boot up i.e. POST test results. When you boot up your machine the Power On Self Test tests various parts of the PC including the PCI bus, Video etc. Normally if the MB doesn't communicate with the Video card (because its faulty or the bus is faulty) the POST...
  13. Laffalot

    Problem with input and print

    Hi, A quick and dirty way would be to save it as a string, and when reading it back convert it back to a number e.g. Print #1,MTR,MTOR,STR$(MCN),......... When saving Input #1,MTR,MTOR,MCNXX$,........... MCN=VAL(MCNXX$) When loading Any Help, Yes/No let me know...
  14. Laffalot

    I can not run any programs help please

    Hi, Probably that file has been deleted or renamed. Try copying the file from another XP machine and copy it onto yours at the correct location. I'm not sure about XP but in '98 its only 25K so it will easilly fit on a floppy. Any Help, Yes/No let me know Regards...
  15. Laffalot

    Keyboard

    Hi, Go to your BIOS settings. There is usually a setting for HALTING when the computer finds a problem. In some (if not all) this can be set to ALWAYS, NEVER or some other condition. Set this to never and you should be able to boot without a Keyboard. Any Help, Yes/No let me know Regards...
  16. Laffalot

    Dead Laptop!!!!

    Hi, If you get no POST indications and Windows is starting to load then it's time to format your HDD after running FDISK. Chances are that Windows is loading up but getting stuck on a hardware driver or something. Any Help, Yes/No let me know Regards...
  17. Laffalot

    Can I use PC100 memory in a 66Mhz motherboard?

    Hi, I would say it depended on your refresh rates. It is possible that your PC100 has a faster refresh rate. Ypu can end up with problems if the memory refresh rates don't match. Any Help, Yes/No let me know Regards ________________________________________ Is not a fool a wise man in his...
  18. Laffalot

    Changing Fans on PC

    Hi, Which fan ?. There are usually 2 but sometimes 3 main fans. The obvious one is the one at the back of the PC. This is a fan for the power supply. If its this then power down the PC take the supply apart and go get another one. They are not all standard size but they do tend to be 12v...
  19. Laffalot

    Label.Caption ignores code

    Hi, Try putting the Label2.Caption = "processing" instruction on the MOUSE_DOWN event. When you click the mouse the event will run you code. What seems to be happening is the first setting of the caption in your code would be actioned when the end sub comes along. If you had fast...
  20. Laffalot

    domain logon problem

    Hi, What protocol are you using for your network. If its TCP/IP then are all the addresses/gateways etc setup correctly ?. Is your Domain name correct in the Win98 machines ? Have you tried using PING to see if the Server and Client are accesable from one another ? If you are using TCP/IP...

Part and Inventory Search

Back
Top