|
|
Thanks for your help Paresh.
I know, how to send and recieve user defined messages in VC++ MFC based applications i.e., Dialog based/Doc View based application.
My main problem is to recieve user defined message in Win32 console based application. Though sending messages is not a problem. Problem is only to recieve the same.
Thanks
|
|
|
|
|
Did you mean, your console base application is running and you want to communicate to that application ?
Are you looking for something like IPC ?
If Yes, Please refer more information on IPC at here[^].
Regards,
Paresh.
|
|
|
|
|
Hi All,
Is there a way we can startup the GDI+ 1.1 version?
If so what changes are required to use GDI+ 1.1?
Thanx.
Do your Duty and Don't expect the Result
|
|
|
|
|
|
Hi Iain,
Thanx for the info.
Actually i have to develope a simple photo editing tool. so i was looking for the APIs in GDI+ and i found some of them interesting, unfortunatly they are of version 1.1
Do your Duty and Don't expect the Result
|
|
|
|
|
I have made a GDI+ 1.1 Library up in C#, it even includes full legacy emulation (albeit a bit slower than the using GPU like the GDI+ 1.1 does) for when the client machine is windows XP, you can find it here with full source:
http://csharpgdiplus11.codeplex.com/[^]
|
|
|
|
|
I'm sure that's very clever stuff, but I suspect the person who asked the question will be even more interested than me.
(Well done though!)
Iain.
I am one of "those foreigners coming over here and stealing our jobs". Yay me!
|
|
|
|
|
Hello Friends
I m converting a .AVI file to .MOV file but after conversion I hv to delete the .AVI file but it is not deleteing.
May b its b'coz of Access (means that AVI file is in use),
b'coz i used DeleteFile,remove,_unlink,system().
Please Suggest me some solution.
Regards & Thanks
Yogesh
|
|
|
|
|
If you are using Windows APIs to open the AVI file, there are 2 possibilities.
You can either use the FILE_FLAG_DELETE_ON_CLOSE flag with CreateFile , or use DeleteFile to delete the file after use. In both cases, the file has to be first closed using CloseHandle .
If you are using a third party conversion library, it will have some similar function to close the source file or delete it after close.
«_Superman_»
I love work. It gives me something to do between weekends.
|
|
|
|
|
I m using ConvertFileToMovieFile(&FSSource,
FDestName,
FOUR_CHAR_CODE('TVOD'),
smSystemScript,
NULL,
myFlags,
NULL,
NULL,
0L);
and myFlags = createMovieFileDeleteCurFile | showUserSettingsDialog | movieFileSpecValid | movieToFileOnlyExport;
.
|
|
|
|
|
yogeshs wrote: May b its b'coz of Access (means that AVI file is in use),
It's really bad. If you had not mentioned this one you could be spared. You know the reason why you are not able to delete it , but are you asking the same question again? No matter what delete function you use, DeleteFile, BombFile, NukeFile, nothing will work until you close() your file. Just close it after you are done with your conversion. There's no other reason why it cannot be deleted.
Starting to think people post kid pics in their profiles because that was the last time they were cute - Jeremy.
|
|
|
|
|
I m using closeMovieFile(refnum),but still it is not deleting.
|
|
|
|
|
Hi Everybody,
I need a help regarding subclassing CRichEditCtrl....
I have create the class MyRichEditCtrl using base class as CRichEditCtrl. I want to override "SetSelectionCharFormat" function in my subclass. It has to do the same functionality as the base class function + more. Pls any one help.
vijay
modified on Wednesday, April 8, 2009 11:36 PM
|
|
|
|
|
BOOL MyRichEditCtrl::SetSelectionCharFormat(CHARFORMAT2& cf)
{
CRichEditCtrl::SetSelectionCharFormat(cf);
+ more
}
«_Superman_»
I love work. It gives me something to do between weekends.
|
|
|
|
|
I would like to select Window objects (Start, File, Close, Minimize, Maximize ...) as a real mouse, however I don't have a real mouse, but I can use my capture coordinate to move the mouse as the following:
SetCapture();
SetCursorPos(pos_X, pos_Y);
ReleaseCapture();
By any chance, when my pointer (pos_X, pos_Y) pointing at a Window object, can I invoke any command, event to do as Left/Right-Click like the real Left/Right mouse buttons?
Many thanks for any help. 
|
|
|
|
|
|
Follow your links, now I am able to do what I ask for.
Thanks 
|
|
|
|
|
use funtion to count this sum:
s=a1*a2+a2*a3+a3*a4+...
I did,but have error:
#include "stdafx.h"
#include<iostream>
#include<cmath>
using namespace std;
void sum(int a[],int n)
{
int sum;
sum=0;
for(int i=1;i<n;i++)
sum=sum+ a[i]*a[i+1];
cout<<"sum="<<sum<<endl;
}
int main()
{
int a[100];
int n;
cout<<"enter n:"<<endl;
scanf("%d",&n);
cout<<"enter numbers of array ";
for(int i=1;i<n;i++)
scanf("%d ",&a[i]);
sum(a[100],n);
getchar();
}
but when running, this error : error C2664: 'sum' : cannot convert parameter 1 from 'int' to 'int []'
can you help me edit that code .can you send me your answer into my email: doiphongba_ht2000@yahoo.com
thank you very much
|
|
|
|
|
That's because a[100] refers to the 101st item of a (which doesn't exist anyway). To refer to the array, just use a .
Just be aware that arrays in C/C++ do not carry any information regarding the size of the array - if you need to process variable size arrays, you need to specify the array size.
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
I have Cstring a. If button1 is pressed a="1". If button1 is pressed again a=a+"1". Now i want this a to be converted into integer or double.
Thanks
|
|
|
|
|
_ttoi[^], _ttof[^]?
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
for:
CString a="111"
double x=_ttoi[a] doesn't work..
1 thing more..
How to delete decimals and dot for decimals for double x with string.format(...,x)?
|
|
|
|
|
Aljaz111 wrote: CString a="111"
double x=_ttoi[a] doesn't work..
Function call syntax helps...this code (note - it's _tstof, not _ttof - MSDN is a little ambiguous here)
{
CString a("11");
const int i = _ttoi(a);
const double d = _tstof(a);
std::cout << i << std::endl;
std::cout << d << std::endl;
}
{
CString a("11.5");
const int i = _ttoi(a);
const double d = _tstof(a);
std::cout << i << std::endl;
std::cout << d << std::endl;
}
produces this
11
11
11
11.5
Aljaz111 wrote: How to delete decimals and dot for decimals for double x with string.format(...,x)?
Sorry, don't know what you mean.
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
Lets say you have double x= 5.0000... how to delete decimals so outcome would be double x=5 without .0000??
|
|
|
|