Search:

Type: Posts; User: wiccaan

Page 1 of 12 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    2
    Views
    667

    Re: Winsock 2.0 Buffer Issue

    Thanks, I figured it was something small that I missed. This fixed it :)
  2. Replies
    2
    Views
    667

    [RESOLVED] Winsock 2.0 Buffer Issue

    Hey guys, having an annoying issue with Winsock2 right now. I am making a semi-IRC plugin for a program I work on and right now I can't get too far with this cause of the spam that happens while...
  3. Replies
    3
    Views
    8,767

    Re: G15 Programming

    The screen is actually just pretty much a standard LCD screen device, you can use things like LCDStudio and such to draw to it. Your system sees the LCD as a HID device so you can use some API to...
  4. Replies
    2
    Views
    523

    Re: Small Windows Issue

    I'm not trying to remove it completely. But instead put it back at the original size it was before.
  5. Replies
    3
    Views
    8,767

    Re: G15 Programming

    The keyboard comes with an SDK itself. If you have the newest drivers installed for it, which are currently 1.03 which you can find here:
    ...
  6. Replies
    2
    Views
    523

    Small Windows Issue

    Nothing big, just an appearance issue. I recently installed a few programs to make Windows XP look like Windows Vista since I do like the way Vista looks. Anyway, I just uninstalled everything since...
  7. Re: 'CreateFileW' : cannot convert parameter 1 from 'const char [13]' to 'LPCWSTR'

    Not sure if this will fix your error but I did notice you're missing a parenthese in your CreateFile line:


    hFile =CreateFile("d:\\text3.doc",GENERIC_READ|GENERIC_WRITE,
    ...
  8. Replies
    2
    Views
    583

    Re: printf print values wrong??

    Making a test using printf, I didn't see this issue at all. Using the same thing as you, my code:



    #include <iostream>
    #include <conio.h>

    float x();
    float y();
    int z();
  9. Replies
    5
    Views
    893

    Re: Type Conversion

    Sorry for the triple post but I would like to say not to use this as it's doing the same thing as before with using (DWORD)uModule.modBaseAddr. Beings that its using the inline ASM feature, it...
  10. Replies
    5
    Views
    893

    Re: Type Conversion

    Being "ghetto", if you will, solved this issue. I used a small ASM line of:



    __asm
    {
    mov eax, uModule.modBaseAddr
    mov ModuleBase, eax
    }
  11. Replies
    5
    Views
    893

    Re: Type Conversion

    That gives an access violation error. It attempts to read the value of uModule.modBaseAddr using that.
  12. Replies
    5
    Views
    893

    Type Conversion

    Hey guys, small question. Nothing major, but looking for the correct way to convert:

    BYTE* to DWORD

    I'm using CreateToolhelp32Snapshot to retrieve information of a process and one of the...
  13. Re: what is the method to set window Loction of a launched EXE ?

    A mod would need to move it.
  14. Re: what is the method to set window Loction of a launched EXE ?

    Uh, think you posted this in the wrong section.
  15. Replies
    61
    Views
    1,998

    Re: PC is locking up!

    Does it just stop randomly? Or is it caused by you doing something on the computer?

    It could be software related if that is the case. If not, you could get some system test tools to test your...
  16. Replies
    5
    Views
    918

    Re: Where can I start learning C++?

    Heres some links I have:

    http://www.winprog.org/tutorial/
    http://www.functionx.com/win32/
    http://www.cplusplus.com/doc/tutorial/
    http://www.cppreference.com/...
  17. Replies
    34
    Views
    2,933

    Re: Vista Theme

    He means good job. It is a great theme.
  18. Re: Buying a new PC. (Apple vs PC Discussion Inside!)

    As others said, if you are a big gamer you might want to stick to PC. You can dual boot an Apple to run Windows, but that just takes up more space, and less space to use for more games :P

    Apples...
  19. Replies
    38
    Views
    1,395

    Re: Credit cards for online payments.

    Depending on what you are shopping for, there are usually well known sites at the top of search engines like Google and Yahoo. Simply typing the product you wish to buy and using one of the sponsored...
  20. Replies
    7
    Views
    762

    Re: Cant start windows anymore :(

    (Quoted from: http://www.updatexp.com/stop-messages.html)

    http://support.microsoft.com/default.aspx?scid=kb;en-us;Q228888
    http://support.microsoft.com/default.aspx?scid=kb;en-us;Q312582
  21. Replies
    8
    Views
    617

    Re: second monitor is slower

    Check the settings for the output going to the second monitor. As well as the settings for the monitor itself when it has focus. Things like refresh rate and such could be effecting it.
  22. Replies
    8
    Views
    771

    Re: Win32 project in VS2005?

    This is mostly due to compiler settings. I have this issue with my apps as well with the people that use them.

    Here are a few settings to try and see if they work for ya:

    To edit the project...
  23. Replies
    2
    Views
    6,159

    Re: What is PnP BIOS Extension?

    Have you installed any new software recently? Or any new hardware that uses Plug and Play? (Mouse, keyboard, external drive..)

    Also, is this warning/error under a certain section in device...
  24. Replies
    15
    Views
    966

    Re: Internal vs External HD

    Oh, if thats the case, more importantly safety and security would be an issue there too. People could unplug the driver, and connect it to another system and infect the drive. Or just straight up...
  25. Replies
    15
    Views
    966

    Re: Internal vs External HD

    Internal.

    I say internal mainly cause you said it doesn't need to move around. Theres no reason to spend the extra money on something that you really don't need. But along with that, external HDDs...
  26. Thread: Ddram

    by wiccaan
    Replies
    5
    Views
    520

    Re: Ddram

    Also, it's suggested to not mix and match companies. So if your current module is by Kingston, it's suggested to upgrade with another Kingston module and not another one by a different company.
  27. Thread: Hamachi

    by wiccaan
    Replies
    5
    Views
    647

    Re: Hamachi

    Its main use is for games like Counter Strike, Unreal Tournament, Battlefield, Quake, etc. Its to create a lan with your friends to allow messaging, file sharing, and ease of created and connecting...
  28. Replies
    8
    Views
    1,950

    Re: [RESOLVED] Set as active application

    You need to change the class and window name for the example I showed. For Windows Media Player:

    Wnd = FindWindow("WMPlayerApp", "Windows Media Player")

    Also, the example I posted was to be put...
  29. Replies
    8
    Views
    1,950

    Re: Set as active application

    I had a lot of trouble using the basic standard commands that are supposed to do this and I could never get them to work for me, however, I did find a way to do it using a bit more "force".

    Heres...
  30. Replies
    18
    Views
    1,486

    Re: [RESOLVED] Computer Issues

    Talked with a friend that said he had the same issues and to reinstall Norton and try again. After doing so I did a few extra things from Nortons site for the said virus and Norton finally noticed...
  31. Re: how much does a Boolean Variable take from the memory? (and another question)

    Another simple way to find out the length of a type:

    Dim aTemp As Byte
    Dim bTemp As Boolean
    Dim iTemp As Integer
    Dim lTemp As Long
    Dim sTemp As Single
    Dim dTemp As...
  32. Replies
    8
    Views
    7,094

    Re: Call function every 5 seconds

    You can use the sleep API to pause it after every add.

    Declare Sub Sleep Lib "kernel32" Alias "Sleep" (ByVal dwMilliseconds As Long)
    or
    Declare Function SleepEx Lib "kernel32" Alias "SleepEx"...
  33. Replies
    5
    Views
    614

    Re: Can some one explain to me

    Can we get a little more info on the Apache software used? There are a number of server based software distributions that use Apache and could be any one of them. Each with their own flaws and such....
  34. Replies
    21
    Views
    1,166

    Re: [serious] VB6 vs. VB2005?

    http://support.microsoft.com/kb/837910
  35. Replies
    8
    Views
    782

    Re: Unzip using WinRAR

    You can take a look at Zend, a php enhancement engine. It has a rar extract function:

    https://www.zend.com/manual/function.rar-extract.php

    PHP has it too: http://us2.php.net/rar
  36. Replies
    8
    Views
    782

    Re: Unzip using WinRAR

    Winzip 11 can extract .rar files now. But only extract.
  37. Replies
    18
    Views
    1,486

    Re: Computer Issues

    From what people suggested about:

    - Registry Services that run at start up:
    Nothing that shouldn't be there. Everything is via a driver for part of the laptop. And a few extra's for Winamp,...
  38. Replies
    4
    Views
    5,513

    Re: Buffer Overflow Protection

    Check out this post on another forum:
    http://www.geekstogo.com/forum/index.php?showtopic=123927&st=0

    Not trying to lead you away from this, but I would rather you read the real topic instead of...
  39. Replies
    18
    Views
    1,486

    Re: Computer Issues

    Yup, on both computers.

    The laptop has an OEM copy of Windows XP Home w/SP2 from Alienware, and my desktop has a brand new copy of XP Pro w/SP2 just bought it not to long ago.
  40. Replies
    18
    Views
    1,486

    Re: Computer Issues

    I took a look at once of the exe's that corrupt after a while and noticed the file size difference after its corrupted.

    New Install (Works fine): 1.07MB
    Corrupted (Wont Start): 1.23MB

    So I...
Results 1 to 40 of 480
Page 1 of 12 1 2 3 4



Click Here to Expand Forum to Full Width