
- Home
- Activity Stream
Activity Stream
New Activity ()
Please reload this page to view the 200+ new activity items that have been created.
-
Older Activity
-
Today, 01:58 AM
My younger brother is about to complete his 12th class and he is considering two fields in which he wants to make a career that is either as an AI...
0 replies | 34 view(s)
-
Yesterday, 06:48 AM
When you call OpenProcess() you are not testing the return value for NULL. When you call ANY of the os api functions you need to always test for api...
6 replies | 225 view(s)
-
Yesterday, 05:13 AM
issues Im facing
1. Snapshot Process, does not show me the current process
2. If i open the process in the same function, the OpenProcess API...
6 replies | 225 view(s)
-
Yesterday, 04:35 AM
https://www.vbforums.com/forumdisplay.php?1-Visual-Basic-6-and-Earlier ]
1 replies | 72 view(s)
-
March 25th, 2025, 07:45 PM
I am preforming a data integrity check by using a select count. i noticed that the developer was only passing 1 expression if Val(sRows) >1 but he...
1 replies | 72 view(s)
-
March 25th, 2025, 10:24 AM
Ah ha. Apparently, hiding the picture control makes it destroy the image it was displaying so there's nothing to become visible again. So i set the...
3 replies | 214 view(s)
-
March 25th, 2025, 08:35 AM
in header file
CStatic m_pic;
in cpp
void CRosterView::DoDataExchange(CDataExchange* pDX) {
CFormView::DoDataExchange(pDX);
......
3 replies | 214 view(s)
-
March 25th, 2025, 06:22 AM
Thankyou very much kaud for the help .I;ll go through the link.
But this app when the customer runs, they might not get the access (unless he runs...
6 replies | 225 view(s)
-
March 25th, 2025, 05:13 AM
hProcess = OpenProcess( PROCESS_ALL_ACCESS, FALSE, pe32.th32ProcessID );
For this to work, the process security descriptor for the requested...
6 replies | 225 view(s)
-
March 25th, 2025, 05:02 AM
Thankyou very much for the reply and hints.
I gave example a code which I tried to understand myself.
In the legacy code, Im trying to change,...
2 replies | 167 view(s)
-
March 25th, 2025, 04:00 AM
Thankyou very much Igor. Sorry for delay, somehow the website was not reachable for me yesterday (!)
Im not windows internal programmer, so it...
6 replies | 225 view(s)
-
March 25th, 2025, 01:53 AM
Could you post your actual code?
3 replies | 214 view(s)
-
March 24th, 2025, 09:47 PM
I have a CFormView with Picture control that displays a bmp image.
I want to hide that control and later re-show it. I used...
3 replies | 214 view(s)
-
March 24th, 2025, 09:45 PM
It replies?
1 replies | 89 view(s)
-
March 24th, 2025, 03:18 PM
tESTING ADDING attahment.
2 replies | 87 view(s)
-
March 24th, 2025, 02:30 PM
The site seems much better:thumb:
2 replies | 87 view(s)
-
March 24th, 2025, 12:54 PM
It works?
1 replies | 89 view(s)
-
March 24th, 2025, 07:39 AM
Testing to see what happens.....;)
2 replies | 87 view(s)
-
March 23rd, 2025, 12:49 PM
SetTimer says:
So, calling SetTimer is not enough to fire your callbacks. You need to start message pump looping. And find a way to break the...
2 replies | 167 view(s)
-
March 23rd, 2025, 11:54 AM
PROCESS_ALL_ACCESS must be the cause of Access denied. The access level is way too high for an average app, so rejected. (See MSDN)
An option...
6 replies | 225 view(s)
-
March 23rd, 2025, 08:30 AM
Hi,
I create a new process from parent process.
Now I need to print the process info on the child process, every 5 mins.
Im thinking of...
2 replies | 167 view(s)
-
March 23rd, 2025, 06:13 AM
Hello,
I need to display the information of a process in c++. (ie number of threads in c++ , belonging to a process etc) in windows
I am not...
6 replies | 225 view(s)
-
March 23rd, 2025, 04:55 AM
You're right.
1 replies | 139 view(s)
-
March 23rd, 2025, 03:13 AM
I'd. like to make introductory comment saying the following code is a solution of old academic exercise so It's old code:
#include <iostream>...
1 replies | 139 view(s)
-
March 22nd, 2025, 05:04 AM
f() needs to be declared as virtual so that polymorphism works correctly for inherited classes.
#include <iostream>
using namespace std;
...
1 replies | 113 view(s)
-
March 22nd, 2025, 04:30 AM
This is just didactic example:
#include <iostream>
using namespace std;
struct A {
void f() { cout << "Class A" << endl; }
};
struct...
1 replies | 113 view(s)
-
March 21st, 2025, 06:00 AM
I had the exact same assignment, and I was stuck too! The trick is to break the number down into its place values using integer division (//) and...
3 replies | 1686 view(s)
-
March 21st, 2025, 04:24 AM
https://www.vbforums.com/showthread.php?910250-Modifying-Excel-workbooks-any-good-code-available ]
1 replies | 188 view(s)
-
March 20th, 2025, 07:53 PM
I'm trying to write some code to interact with an Excel workbook, but so far I have landed flat on my face. Out of the gate I am getting errors from...
1 replies | 188 view(s)
|
Click Here to Expand Forum to Full Width
|