See Full-Featured Tree Control[^]
You talk about Being HUMAN. I have it in my name AnsHUMAN
See Full-Featured Tree Control[^]
You talk about Being HUMAN. I have it in my name AnsHUMAN
Can you change the icon to bitmap and try CBitmapButton class to load it on the button?
You talk about Being HUMAN. I have it in my name AnsHUMAN
Once a USB drive is attached to another computer, the drivers will install on the other computer as well. On this being done and said, you can then access the contents of the USB drive just like any other remote drive. Not sure what do you mean by "all operation". the above is answered assuming you are querying for copy/paste and other basic functionalities.
You talk about Being HUMAN. I have it in my name AnsHUMAN
As the name ActiveX CONTROL suggests that it is a control you will need something (some app) to host it. You can call the activex's functions from the host which can be an executable. ActiveX doesn't work as a separate process. Does main program waits on ActiveX ctrl or I can do sperate processing simultaneously in my main program. This depends on the implementation.
You talk about Being HUMAN. I have it in my name AnsHUMAN
See this;
&a[2] - &a[0]
(a + 2) - (a + 0)
a + 2 - a - 0
2 - 0
2
the above is true because use pointers you will always get the difference of elements
You talk about Being HUMAN. I have it in my name AnsHUMAN
See CResizableSheet and CResizablePage[^] and ResizableLib[^]
You talk about Being HUMAN. I have it in my name AnsHUMAN
Then there might be an issue in the path you create or the value type you use.
You talk about Being HUMAN. I have it in my name AnsHUMAN
What is the return value for RegQueryValueEx. You can check here[^] for the issues you can face and identify why RegQueryValueEx is failing. Below are the failure scenarios mentioned at the above location: If the function succeeds, the return value is ERROR_SUCCESS. If the function fails, the return value is a system error code. If the lpData buffer is too small to receive the data, the function returns ERROR_MORE_DATA. If the lpValueName registry value does not exist, the function returns ERROR_FILE_NOT_FOUND.
You talk about Being HUMAN. I have it in my name AnsHUMAN
I would develop the user interface in C# and try to put the logic in VC++ if at all it is a mandate.
You talk about Being HUMAN. I have it in my name AnsHUMAN
You talk about Being HUMAN. I have it in my name AnsHUMAN
A csv file is nothing other than having values separated by a , So, in essence if you create a simple .txt file which contains values separated by a comma operator, the file should open quite happily in Excel. Steps: 1. From your code create a file ABC.csv 2. Put values in the file as 1,2,3.... and so on 3. Save the file from your code. 4. Open excel and you should see the correct contents in the format you wished.
You talk about Being HUMAN. I have it in my name AnsHUMAN
I think there is a problem in the command line arguments you are passing to the executable in the ShellExecute Function. This should be one string something like: "D:\\NSRM3443\\Test\\ch21\\ENC_ROOT\\IN121MTM.000 C:\\CASM_IKRYPT_JAVA\\Support\\Inputs\\CellKeys.txt D:\\"
You talk about Being HUMAN. I have it in my name AnsHUMAN
Is it your application wherein you are going to do this, or do you want this to be across the SYSTEM?
You talk about Being HUMAN. I have it in my name AnsHUMAN
You can debug to check if the code flow path is different from the first one in the second case. If this doesn't help consider reinitialization of variables you are using before you display the video on the canvas.
You talk about Being HUMAN. I have it in my name AnsHUMAN
You will have to owner draw it. For ex: For the status bar you can do something like: m_statusBar.SendMessage (/*setback color msg/*, 0 , (LPARAM)RGB (128,128,128)) ;
You talk about Being HUMAN. I have it in my name AnsHUMAN
Group boxes might be causing the issue. See here
You talk about Being HUMAN. I have it in my name AnsHUMAN
HINT:
map,
use this to create association between index and CString object.
You talk about Being HUMAN. I have it in my name AnsHUMAN
This should do it.
int randomizedValueInRange = (rand()%(maxRange-minRange+1))+minRange;
You talk about Being HUMAN. I have it in my name AnsHUMAN
Are you building your project with "Use Unicode Character Set" or "Use Multi-Byte Character Set" character set. Change it to "Not Set" Other alternative would be to use string instead of CString. or like this with the above options set:
FILE *fptr;
CString Text;
Text = "asdasdasdasd";
fptr = _wfopen (_T("D:\\Test.txt"),_T("w+"));
if(fptr== NULL)
exit(1);
fwprintf(fptr,_T("%s"),Text);
fclose(fptr);
You talk about Being HUMAN. I have it in my name AnsHUMAN