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

    Mutual Inclusion

    I realise this seems a stupid question but I have googled this to death with no results so here goes: I have two files, game.h and player.h. Each contains a reference to the other. I started by simply putting an include to the other each file. This resulted in an infinite loop when I compiled...
  2. fatlardo

    Creating a constructor with a string parameter

    Thanks a lot. It works now :D You'll probably hear from me again before the end of the week!! Thanks Gary
  3. fatlardo

    Creating a constructor with a string parameter

    I am new to C++ and I think I may have thrown myself in a bit too deep!! I have programmed before in Delphi and Java so I think this may be more of a syntaxical problem. I am trying to create a class and, on calling the constructor, pass a filename to the constructor. As it stands I'm trying to...
  4. fatlardo

    Delphi 2007 keeps setting my files to 'read only'

    While I am typing, and usually after the prompt box has popped up, Delphi sets the file I am editing to read only!! It's only recently started happening and only seems to happen when the prompt box is displaying parts of an object I have created. Sometimes I can set it back to edit and carry...
  5. fatlardo

    E2018 Record, object or class type required

    Ok, so it's just me being stupid!! I declared UFID as an array and forgot to specify the array element!! If anyone else has a similar problem, the correct code should be: info.UFID[i].owner := LeftStr(strreadin, compos - 1); info.UFID[i].identifier := RightStr(strreadin...
  6. fatlardo

    Adding your program to open specific .ext

    I don't know if its just how you typed it or whether it's meant to be like that, but you have no colon after D!!!! Is it meant to read D:\Programs?? Just a passing thought Hope it helps
  7. fatlardo

    E2018 Record, object or class type required

    I am trying to assign values to two properties of an object I have created. The relevant parts of the declaration are below: type TTagv2 = record //Variables used by unit exists: Boolean; //Frame variables UFID: array of record //Unique file identifier owner: string...
  8. fatlardo

    IE shortcuts quit working

    Sound to me that its a problem with something you have done to all the affected computers. It isn't really something that coincidentally happens to 5 computers at once!!! Also check for viruses. If you find a virus, take the affected computers straight off the network as this will be how it...
  9. fatlardo

    Pause problem with TMediaPlayer

    I am using a media player object and I'm having trouble getting it to pause and resume. Whenever I pause it, it seems to stop instead. The Mode property is mpStopped and even if I use Resume it still plays from the beginning. Anyone got any ideas? Gary
  10. fatlardo

    Phantom Mouse

    It is a problem with your logitech mouse. For some reason even usb mice come up as ps/2 compatible!!! try the logitech website for the latest drivers for your operating system Hope it helps Gary
  11. fatlardo

    Change Windows background picture according to user rights

    Ok ok so you gave me the idea for it!!!! But I did the leg work!!!!
  12. fatlardo

    Programs missing in Program Association list

    If you right click on the icon in the start menu for front page and click on properties the target box will show you where the .exe file for front page is located. Navigate to this through the open with... dialog and viola! You've done it!! Make sure to check the 'Make this the default...
  13. fatlardo

    Change Windows background picture according to user rights

    I had a quick google on the subject of scripts to get user rights but with no success. I did however have a mini-brainwave!! It is possible through VB, and therefore it might be possible through VBScript, to get the username of the current user logged on. If you used this in conjunction with a...
  14. fatlardo

    Change Windows background picture according to user rights

    Depending how many users you have, you could always set a background for each user? I would assume that only a few people can change user rights, so just get them to change the image with the rights!! I will look into other ways for you Hope it helps Gary
  15. fatlardo

    XP Boot problem, how do I identify the problem driver?

    I had this problem when I installed Vista on my laptop. It turned out to be a dodgy driver for my Nvidia Go 7400 graphics card. If you have installed any new hardware lately or you're using a driver designed for an older version of windows, boot into safe mode and uninstall the device from...
  16. fatlardo

    Flicker-free refresh

    Success!! Thank you very much. I think you were right, it was running too fast to keep up with and while redraw slowed it down enough to see, the fact that it had to redraw so much made it flicker. Thanks a lot Gary
  17. fatlardo

    Flicker-free refresh

    Ok so I've solved my own problem in part at least!! I was refreshing the whole form. So even if the player frame (the one with lots of buttons on it!) wasn't being moved, it was being refreshed. I still have a problem with the flickering when I move the player however. And I'm worried that...
  18. fatlardo

    Don't see Published variables in Object Inspector

    Where in the register procedure did you put them. I would imaging they would have to go at the start, before you register the component? Again, this is all guesswork, but you cant complain if it works!!!! Hope it helps Gary
  19. fatlardo

    Flicker-free refresh

    It's worked on three out of the four frames. But they are the three that have an image and a label and thats it!!!! The last frame has about 20 images buttons and it still flickers, even when it's not being moved!!!!!
  20. fatlardo

    font height and text node misbehavior

    There are a couple of things you could try: Firstly, assuming you will have text by every + sign, change the margin or padding to a minus figure. I'm not sure if this will work. I haven't used these properties much in the past! If that doesn't work you can try absolutely positioning your...

Part and Inventory Search

Back
Top