CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: kandukondein

Page 1 of 28 1 2 3 4

Search: Search took 1.53 seconds.

  1. Replies
    3
    Views
    5,989

    Converting UTF-8 Strings to Unicode.

    Hi Guys

    I am very new to UTF8.

    I am debugging a code wherein the UTF8 string is converted into Wide char by using

    BSTR unicodestr = SysAllocStringLen(NULL, bufferLen);...
  2. Replies
    7
    Views
    1,344

    Re: Linking 2 dialog boxes?

    Can't you Create a property sheet in wizard mode? This will have Sheets "not" in the form of tabs but in the form of a wizard using back next and finish buttons.

    Links given by Laitinen (4th...
  3. Replies
    2
    Views
    3,903

    Re: Kernel-Mode File Copying

    Have you tried using ZwCreateFile, ZwReadFile and ZwWriteFile. Also make sure its not too early in the game if yours is a driver loading during boot process.
  4. Re: File System Driver (Memory Mapping issues)

    Can you refer Win NT internals by Rajeev Nagar. That explains how to use SectionObjectPointers for a memory mapped file.
  5. Replies
    7
    Views
    12,402

    Re: Webcam emulator driver - how to start?

    Not sure i understand your question but as far as i know Can't you use Dshow for Grabbing frames ?
  6. Replies
    6
    Views
    1,223

    Re: Directly reading/writing a HDD

    A USB HDD gets asssigned as a PhysicalDriveX right?
    Try using CreateFile and WriteFile for opening and writing directly on to sectors. I have done it and its pretty simple.

    Try looking at...
  7. Replies
    5
    Views
    971

    Re: My program don't reboot system

    I meant your calling application should have SE_SHUTDOWN_NAME privilege.
    Refer this link

    http://msdn2.microsoft.com/en-us/library/aa376871.aspx
  8. Replies
    1
    Views
    965

    Re: Strange WinDbg debugging problem

    Yes your theory is possible.

    Is pFile your code defined Variable or you are accessing some other code's Variable?

    May be you can add some additional code so that we can take a look at it .
    ...
  9. Replies
    4
    Views
    1,174

    Re: Real random number generator

    Please refer X9.31 PRNG which is a true Pseudo Random Number Generator which takes into consideration all entropies. One possible place to refer it would be the Openssl implementation.

    Thanks.
  10. Replies
    5
    Views
    971

    Re: My program don't reboot system

    May be you have to elevate your privileges?.
    Check your privilege level.
  11. Re: Determine which is a Bootable Drive and System Drive?

    IGor,


    Yes I need the drive that was booted for current windows session. Bootable and System drives are same for Single IDE machines but when it comes to multiple IDEs there could be chance for...
  12. Re: Determine which is a Bootable Drive and System Drive?

    Thank you let me check that quickly...
  13. Determine which is a Bootable Drive and System Drive?

    Hello Guys
    How to Determine which drive is bootable and which is a system drive. For example i have two drives on my machine physicaldrive0 and physicaldrive1. I determine the System Drive of my...
  14. Replies
    2
    Views
    2,748

    Re: Forcing a File to be Unmovable in Disk.

    Thanks mark . I have our proprietery file at one portion in the hard disk where i maintain some Boot Info. That file is actually encrypted which i can read it before the boot process begins. I...
  15. Replies
    2
    Views
    2,748

    Forcing a File to be Unmovable in Disk.

    Hello Gurus,

    I want one of my files to be always unmovable in disk. For instance i create a 80 MB file and mark it as System,Readonly and Hidden. I make it as a contiguos file (on the disk as...
  16. Replies
    16
    Views
    1,836

    Re: Happy Birthday kandukondein

    Ooops missed this as i logged in after a looooooooooooonnnggg time...
    Thank you Very very much Guys!!!!!!!!!!!
    Wish you aaaaallllll aa Very Happy New Year 2006.
    Thank you
    Kandukondein
  17. Replies
    2
    Views
    902

    Re: GetLogicalDrives and FireWire device

    Dear Jeff
    I had already tried that code. That works excellent for USB hard disk (where i get the pDevDesc->BusType as BusTypeUsb) but for Firewire pDevDesc->BusType does not match any of the enum...
  18. Replies
    2
    Views
    902

    GetLogicalDrives and FireWire device

    Dear Gurus,
    When you call GetlogicalDrives and get the DriveType of a Logical drive where A Firewire device was connected through a firewire port it always returns DRIVE_FIXED. Is there anyway we...
  19. Replies
    74
    Views
    13,927

    Why is Codeguru slow nowadays?

    I can somehow feel codeguru is much slow than what it used to be earlier.

    It takes 2 minutes for search to complete. Sometimes i get a page cannot be displayed error as well...

    Can anyone...
  20. Replies
    1
    Views
    2,835

    How to Disable/Delete CDROM device?

    Hello Gurus
    I want to disable/ Delete CDROM device until the user is logged in by my Application. How to do it? I tried using FSCTL_LOCK_VOLUME and i had little luck. The thing is i am able to...
  21. Re: How to prevent a Folder from being Shared.

    Thank you very much.

    Regards
    Kandukondein
  22. How to prevent a Folder from being Shared.

    Hello Gurus.
    How are you all doing ?
    I have to prevent folder from being shared.
    Say for instance if the user right clicks a folder and chooses Shared i have to prevent it.
    Thank you very much...
  23. Is it Possible to Handle Shutdown or Restart Windows?

    Hello Gurus,
    I have a Strange Problem. I am updating a counter on the disk by doing a Write to the Disk from a Windows Service in VC++ and i need to handle the case when the user restarts or shuts...
  24. Replies
    2
    Views
    801

    DLL Security

    Hello Gurus.
    I want to make my DLL Secured. FOr instance i export several functions
    FuncA,FunB,FuncC which is called by the installer and then software is installed.

    But however any naive user...
  25. Replies
    26
    Views
    1,762

    Re: Happy Birthday to Mick

    Happy Bday Mick....Sorry to have popped in too late.....
    Hope u had a Joyous one...
Results 1 to 25 of 689
Page 1 of 28 1 2 3 4





Click Here to Expand Forum to Full Width

Featured