Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

depotdog

@depotdog
About
Posts
9
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to write to a string rather than a file with XMLTextWriter
    D depotdog

    How do I write this XML doc to a string rather than a file? Dim xmlr As System.Xml.XmlTextWriter xmlr = New System.Xml.XmlTextWriter("C:\test.xml", Text.Encoding.UTF8) ' add elements, etc.... m_xmlr.Close()

    XML / XSL question xml tutorial

  • Which encryption method to use?
    D depotdog

    if you are putting the app into the public domain, then I suggest that you use at least des56. The hackers out there WILL try to break your encryption and if you use xor or bit flipping, they will break it and post the findings on a hundred hacker bulletin boards. MS has some simple envelope and password encrypt functions in their csp that make it easy or there are many examples out there. I bury a long password in code somewhere and use it as the password to encrypt/decrypt the envelope. Be sure to obfuscate your code or that part where the password is hidden to thwart decompliers. http://msdn.microsoft.com/msdnmag/issues/03/11/NETCodeObfuscation

    C / C++ / MFC c++ security windows-admin question

  • Drop from Shell Dll - Strategy Question
    D depotdog

    Can a C++ shell.DLL do a drop into an application that has drag-drop enabled? If yes, then does it make sense to search for the window handle to see if the app is running, if not start it with shell execute, then do the drop? Got any code or references somewhere? Thanks, DD

    C / C++ / MFC question c++ linux

  • add an unmanaged dll to vb app deployment
    D depotdog

    Thank you thank you. I followed your detailed instructions and I have installed it on a clean test machine successfully. Thank you for your valuable time and your level of detail. DD

    Visual Basic question c++ sysadmin

  • Receive data in VB App from Shell
    D depotdog

    doesnt make sense. How does the application know that there is data on the clipboard to start the retrieval? Can the shell send the file list directly to the running app? How would the app be notified?

    Visual Basic question c++ linux

  • Receive data in VB App from Shell
    D depotdog

    Is this accomplished through the clipboard?

    Visual Basic question c++ linux

  • Receive data in VB App from Shell
    D depotdog

    I have the following code in a C++ shell extension from a user selecting files right click. I have the list of files and can iterate them through a progress dialog, but how do I send them to and receive them in a list box VB forms application? THanks. HRESULT CDllRegShlExt::InvokeCommand ( LPCMINVOKECOMMANDINFO pCmdInfo ) { // If lpVerb really points to a string, ignore this function call and bail out. if ( 0 != HIWORD( pInfo->lpVerb )) return E_INVALIDARG; // Check that lpVerb is one of our commands (0 or 1) switch ( LOWORD( pInfo->lpVerb )) { case 0: case 1: { CProgressDlg dlg ( &m_lsFiles, pInfo ); dlg.DoModal(); return S_OK; } break; default: return E_INVALIDARG; break; } }

    Visual Basic question c++ linux

  • add an unmanaged dll to vb app deployment
    D depotdog

    I have VbNet2005 desktop application that also needs to deploy a dll created in C++. How do I add the dll to the VB deployment project so that it gets installed at the same time? Thanks.

    Visual Basic question c++ sysadmin

  • Registry entries don't show up Regedit, but are set in UI in VS
    D depotdog

    I can successfully create registry keys (createkey)in debug mode of my project, but the key values set with (SetKey) don't seem to change, they always show up as default 0 when inspecting with regedit. The keys are there, but the values are always 0. I tried flush and close. I have tried rebooting and still the values are default 0 in regedit. Crazy thing is, when changing the registry values through my project UI, they appear to succesfully change in the UI, even after reboot of the computer, but when I go to look in Regedit, the default 0 is still there. Does VS work with a copy of the registry that will not show up in regedit???:confused: Thanks, Depotdog

    Visual Basic visual-studio design windows-admin debugging question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups