I want to disassemble a hex file of PIC16F877A.
Is there any good disassembler there. After disassemble is it possible to compile again.
What are the things i have to t take care
I want to put a watermark on my video. IS it possible to do with directshow filter.
Want to overlap an image on video like channel logo. so that image will be fixed when video is playing.
Please provide some valuable help or samples (VC++)
I want to disassemble a hex file of PIC16F877A. Is there any good disassembler ? After disassembly is it possible to compile again ? What are the things I have to take care of ?
hi,
I am writing a program which burns data to DVD. When i run my program its showing error code
0xC0AA0403(The size of the provided IStream object is invalid. The size must be a multiple of the sector size, 2048.)
Please help me on this. How to specify data as multiple of 2048. I am just passing a single DOC file to burn
Hi,
How to give single common address space for all tasks. IF its happening like this can we avoid virtual to physical memory mapping.
I f all task sharing common address space then how can we avoid virtual to physical memory mapping.
Hi,
I want to count the days passed with respect to a given date.
I have a predefined date with me and i want to check the days passed, once the day pass 30 days with respect to the given time i want to get a message.
example given date is25/03/2010 and when my system date reaches 25/04/2010 i have to get a message.
How can i implement it. please give some help
i want to put a newline into a txt file, i tried with many alternative with so many help from this forum but i am getting always unknown character always. Please help
for(int i=0;i<fileDet.size();i++)
{
qDebug()<<"Name directory"<
Hi,
I want to store the URL of all files with same extension in specific directory to one Log file. IS there any batch command available for this.
Exapmle
I want to copy all files with *.TXT extension into one log file with its directory extension(URL)
How to create a 30 days evaluation software. Is there any possiblility to do this with MSI creation. It would be great if MSI installer package provides such in built facility, by which, application expiries after fixed trial period.
If we going for custome action to do this by writing code, how can i do this.
How to Write installation time in some file in installed path or in registry or both. Please give some sample of how to capture time during installation.
How to create a 30 days evaluation software. Is there any possibility to do this with MSI creation. It would be great if MSI installer package provides such in built facility, by which, application expires after fixed trial period.
If we going for custom action to do this by writing code, how can i do this.
How to Write installation time in some file in installed path or in registry or both. Please give some sample of how to capture time during installation.
Hi,
I want to convert ASM file to C program. is there any tools available for this.
My intention is to convert assembly program of PIC 16F877A program to C program...
Hi,
I am getting linker error while working on SHCreateStreamOnFileEx.
Please help me to find out the problem.
IStream* replace::GetStream()
{
LPCWSTR pszFile=L"D:\\Test\\output.txt";
IStream* dataStream = NULL;
if (dataStream == NULL)
{
SHCreateStreamOnFileEx(pszFile,
STGM_READ|STGM_SHARE_DENY_NONE|STGM_DELETEONRELEASE,
FILE_ATTRIBUTE_NORMAL,
FALSE,
NULL,
&dataStream);
}
return dataStream;
}
Error: error LNK2019: unresolved external symbol _imp_SHCreateStreamOnFileEx@24 referenced in function "public: void __thiscall replace::GetStream(void)" (?GetStream@replace@@QAEXXZ) replace.obj replace
Hi,
I don't know whether its the right place to ask this question.
I want some good seminar topic which suits for a cooperate culture company.
I need topic either in management side or technical side which is innovative and interesting which gives much interest to employees
HI,
i am designing a window using QWidget and set a background image, when i run my code i am not getting background image but showing window with default background.
Can anyone help me what may be the reason.
Hi,
I want to execute a slot in different class. Is it possible
UI_CDSK Obj;
connect(Obj.penDrive,SIGNAL(clicked()),this,SLOT( Obj.caller()));
This code is in different class and from this class i want to execute slot of different class(UI_CDSK )
Here penDrive and caller belongs to function UI_CDSK class and the mentioned code is in other class
i created new registry entry using
RegCreateKeyEx(HKEY_LOCAL_MACHINE, TEXT("Software\XXXXXX\Test"), 0, NULL, 0, 0, NULL, &hkey, &dwDisposition)
Now i want to save current system time data and year to the newly created registry for later retrival
How can i implement it in VC++ using RegSetKeyValue. I tried but faile dto implement.
Hi,
I want to open Directory and file using the same function. Is it possible to do the same in QT.
I used
QString directory = QFileDialog::getExistingDirectory(this, tr("Open Directory"),
"",
QFileDialog::ShowDirsOnly
| QFileDialog::DontResolveSymlinks);
Here i can open only directory.
How to open both file and directory using single function
Hi,
I am developing a new application which have to write data to DVD. Is it possible to do with IMAPI2.
I read some help from MSDN but didnt get any startup material.
Can u provide some nice sample or link.
Hi,
I have 3 function in my class B. These three function have to access member function of other class A.
I did this by creating object of class A in class B constructor and tried to access that object in functions of class B. But its showing error.
How can i assess the same object in these three functions. Where i have to create object of class A
B::B()
{
A a;
}
B:: function()
{
a.fun(); //fun belongs to class A
}
B:: function1()
{
a.fun1(); //fun1 belongs to class A
}
I am getting error, How can i implement the same where i can access object a in both function.
When i execute my code i am getting this error
LPTSTR lpBuffer;
::GetLogicalDriveStrings(1024,lpBuffer);
while(*lpBuffer != NULL)
{
printf("%s\n", lpBuffer); // or MessageBox(NULL, temp, "Test", 0); or whatever
lpBuffer += lstrlen(lpBuffer)+1;
printf("sizeof(lpBuffer) %d\n",lstrlen(lpBuffer));
}
OutPut
C
sizeof(lpBuffer) 3
D
sizeof(lpBuffer) 3
E
sizeof(lpBuffer) 3
F
sizeof(lpBuffer) 0