Recent content by gk2k

  1. G

    Help in C++ programming!

    @OP: Glad that you where able to solve it. You think that you cannot do something until you do it.
  2. G

    Help in C++ programming!

    I cannot see any pattern in the file :( Post a snapshot of the pattern and what have u tried to solve it :)
  3. G

    counter strike issue

    @sid_gupta: I have a win 7 system and counterstrike is running fine. Can you elaborate on the problem you are facing("not working" does not give any one a clue on what your problem actually is) and also your system config?
  4. G

    headphones not working in linux

    Are you connecting the headphones and the speaker to the same port for checking?
  5. G

    detecting a loop in a linked list

    Floyds alogorithm(Tortoise and hare algorithm) should suffice your case also. When there is a loop the hare is stuck in the loop however fast it runs and the tortoise will eventually catch up. For a very good discussion see here Interview: Remove Loop in linked list - Java - Stack Overflow
  6. G

    precedence between pre-increment and multipliction. how it works

    According to the C standard the behavior when increment a variable and using it in within a single sequence point is undefined and is dependent on the individual compiler implementation. Turbo C all the three increments are performed before the multiplication operation i.e j=6*6*6 In gcc...
  7. G

    Help in sending email via c#(asp.net web app)

    U can add the registration details as part of the mail subject or body. I registration details can be added as an <username>xxx</username><id>yyy</id>. Basically as a xml elements.
  8. G

    Need Help Coding!

    Please change the thread title so that it more aptly describes the problem you are facing. It will help you in getting more focused replies.
  9. G

    Help regarding RAM URGENT..

    See if you have free ram slots. If yes then you can add any combinations of ram sticks(same frequency)
  10. G

    Cannot boot xp after installing Linux Mint

    If I understand right now you cannot boot to mint after repairing XP. Now restore GRUB using the following link(though this is for ubuntu for mint it will be the same) How to Restore Grub 2 As The Main Bootloader
  11. G

    Programming and Technology related newletters

    Hope this is the right place to post :wink: I've subscribed to the CodeProject news letters and am absolutely loving it :smile: The articles in it keep me abreast with the latest programming languages and techniques. If any one else knows any other similar News Letters please point me there...
  12. G

    the Arch Linux thread

    Finally I installed Arch Linux. Not that difficult getting a GUI up and running as made to feel
  13. G

    problem in PyQt4 program

    You should use threading. I do not know about Python threads, but QThread can do the job very well for you.
  14. G

    want to learn GUI stuffs

    @nims11: I suggest you use Qt. The main advantage is it is Object Oriented. It will help you grasp OO concepts better. You can start with Qt creator-it is a easy drag and drop way to create widgets.
  15. G

    "serivces.exe" process (how to remove ?)

    @incredible a screen shot if msconfig is difficult a ccleaner screen shot is better. @vineet369: I had this type of virus and have removed it manually. I have done it countless times for my friends. Viruses and worms are nothing but programs that exploit the flaw in the design of the OS
Top