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 dencom 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: *

  • Users: webowner47
  • Content: Threads
  • Order by date
  1. webowner47

    How to Open Port in Windows Firewall using C++ Builder?

    This the code i found in Stack Overflow but in Delphi not C++: uses SysUtils, ActiveX, ComObj, Variants; procedure AddExceptionToFirewall(Const Caption, Executable: String;Port : Word); const NET_FW_PROFILE2_DOMAIN = 1; NET_FW_PROFILE2_PRIVATE = 2; NET_FW_PROFILE2_PUBLIC = 4...
  2. webowner47

    How To Use Secondary TForm As Screenshot Capture Area?

    Hello, I'm using the code below to capture desktop screen, but the problem is that the screenshot is taken from the MainForm, and i want to take it from the Secondary TForm instead: TBitmap* __fastcall TCaptureContainer::CaptureImage() { HDC hdcDesk; try { this->bitbmp->Width =...
  3. webowner47

    Problem With Indy TIdTCPClient Reading Thread?

    I created a thread for continuously reading from the TIdTCPServer, but it blocks all my client form, after a moment will go not responsive. Maybe the problem with the way i created the thread, anyway here is my code for the thread...
  4. webowner47

    Need Help Including header files?

    hello, i'm using c++ builder for a quite some time now, i'm having problems including files in order to use some apis like "PcapPlusPlus" for network sniffing, the problem is when i successfully put my files in the project directory and include them, it always show me 100 thousands of errors...
  5. webowner47

    How To Get The Base Address with c++?

    hello i want to get the base address of my application, so that i can write to it's memory, here is my code below: DWORD dwGetModuleBaseAddress(TCHAR *lpszModuleName, DWORD ProcessID) { DWORD dwModuleBaseAddress = 0; MODULEENTRY32 ModuleEntry32 = {0}; HANDLE hSnapshot =...
  6. webowner47

    How to use SQL SERVER database without Microsoft SQL SERVER Management Studio

    Hello, Does anyone know how to use SQLSERVER database without Microsoft SQL SERVER Management Studio? because i saw tons of applications don't use the database client. can any one help me?
  7. webowner47

    How to write to Registry HKEY_LOCAL_MACHINE

    hello, i'm trying to store application Code in the Registry HKLM, but i cannot write, the weird thing is that i can read anything in this Registry Root which is HKLM, but problem is in writing o it: this is my code: var KISReg : TRegistry; KISKey : string; RandNum1,RandNum2,RandNum3 ...

Part and Inventory Search

Back
Top