|
Go on then, prove yourself a man by translating that bit of VBScript into C++
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
*starts typing furiously into the IDE*
It is a crappy thing, but it's life -^ Carlo Pallini
|
|
|
|
|
Rajesh R Subramanian wrote: *starts typing furiously into the IDE*
Men don't use IDEs.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
Unless of course it is Klingon's IDE.
It is a crappy thing, but it's life -^ Carlo Pallini
|
|
|
|
|
Rajesh R Subramanian wrote: Unless of course it is Klingon's IDE.
There is NOT such a thing, there is just...ehm.... Good Thread Hijacking!!!!!
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
If the user tries to close your program from the Task Manager (Applications tab) you can catch the WM_CLOSE message and handle it there.
I'm not sure that will work from the Processes tab, however.
Good luck.
Karl - WK5M
PP-ASEL-IA (N43CS)
PGP Key: 0xDB02E193
PGP Key Fingerprint: 8F06 5A2E 2735 892B 821C 871A 0411 94EA DB02 E193
|
|
|
|
|
im makeing a program but im haveing some issus with it
i dont know how to make (search for a word) and the program will find it form a database or something
if any one can help that would be great full
|
|
|
|
|
tell us what are the issues? and till where have you reached.
|
|
|
|
|
Wiland1234 wrote: m makeing a program but im haveing some issus with it
Vague (be specific!).
Wiland1234 wrote: i dont know how to make (search for a word) and the program will find it form a database or something
From a database or from 'something'? What is 'something'?
Definitely tooooo vague.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
I am looking to send a signal to IDE channel 2
The senario.
I am branching out and looking at robotics and have a Mini ITX (GA-PCV2) running windows xp with a number of onboard systems however i am in need of additional communication means.
I am currently using the parralel port to control 8 relays (may try and improve that number with this artical) Parallel Port Pin Control Library (PaPiC)[^] however what i would like is to be able to send a signal via the IDE channels to control a further 16 relays or more if possible.
I currently only use a singal 3.5" hdd on the ide channel.
Their is two IDE ports/ plugs on the motherboard so it would be even better if i could run more the one relay control board but one thing at a time.
Any help would be appreciated and if someone feels this is on the wrong board please let me know.
Thank you in advance.
|
|
|
|
|
Can anybody tell me how can I erase a text in a transparent window
|
|
|
|
|
|
|
Thanks everybody. I had solved my problem 
|
|
|
|
|
Hi all.
First of all, I am new to MFC programming so thank you for your patience.
Here is my situation:
I have a Stereo camera which provides grayscale images. I can connect to the camera without any problems and I get a unsigned char pointer to the image.
I am now at the stage where I want to display this image in an MFC program. However I am very confused with how images are handled. I know how to load a bitmap image from a file and then display it but I just couldnt figure out how to display an image (referenced by a pointer) to the application. Help!
Sorry if this is a newbie question
Thank you and best regards,
Kit
|
|
|
|
|
You can to convert the frames received from the camera to bitmap classes or BITMAPINFO structs. for example, something like:
void CCameraView2::ProcessFrame(UINT8 *pData,UINT32,UINT8 Redraw)
{
UINT32 BytesPerDstPix;
if(m_pBitmapInfo)
{
BytesPerDstPix=3;
switch(m_ColorMode)
{
case CM_Y8 : memcpy(m_pImage,pData,(UINT32)m_XSize*(UINT32)m_YSize);
BytesPerDstPix=1;
break;
case CM_RAW8 : ConvertRawY8(m_XSize,m_YSize,pData,m_pImage,m_BayerPattern);
break;
case CM_RGB8 : ConvertRGB(m_XSize,m_YSize,pData,m_pImage);
break;
...
|
|
|
|
|
Hi Jonathan
Thanks for your reply. Unfortunately I am still confused on exactly how this works.
In various examples (from various sites), I have seen the bitmap class and the BITMAPINFO structs used with images loaded from file or the resources. However, I could not find anything that uses an image (referenced by a pointed) already in the memory and somehow (either through picture control or whatever means) onto the MFC dialog GUI. Do you have any examples? Or even if you could point me into the right direction, that would be awesome!
I hope this is clear.
Thank again for your help. Really appreciate it.
|
|
|
|
|
Hi,
I used the following comment in one of my programs:
BITMAPINFO *m_pBitmapInfo;
So say you have a certain type of camera, once you've set it up etc, the dimensions, the way the colours are defined, whether the image is in top-down or bottom-up format, black/white or colour, all this sort of stuff is likely to stay the same for each frame you receive from your camera.
You need this sort of information about the picture plus the actual data/bytes that make up the image.
My approach (but there may be others) sets up exactly what you would have if you'd loaded a .bmp file from disc with all the information but then combines it with the actual image data feom the camera to produce a complete bitmap or CBitmap object in MFC.
You could have a look at how the BITMAPINFO and BITMAPINFOHEADER structures are made up which might help.
|
|
|
|
|
Hi again,
You say you can get the data, which presumably is in some image, picture or video format, for example: perhaps it is in YUV422. Basically find or write some code that will covert between this format and the Bitmap format you're almost there. If you're into this to write some MFC code do the former. If you're aim is to only to see the pictures from your camera try the latter.
|
|
|
|
|
hi,
I want to write my code ( Vc++) in txt file then I want to compile it, how I do that?
Thank you
thank you
soso
|
|
|
|
|
anassamar wrote: I want to write my code ( Vc++) in txt file...
As opposed to what other kind of file?
anassamar wrote: ...then I want to compile it, how I do that?
My first guess would be...with a compiler.
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
|
|
|
|
|
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
DavidCrow wrote: As opposed to what other kind of file?
A .cpp file for instance ?
|
|
|
|
|
visual studio requires you to have a project & workspace in order to compile anything. Make a new project (it will create a workspace automatically) and then figure out how to "add a source file" to the project. Then you can compile it.
Projects & Workspaces are things that help organize different projects that a coder might otherwise just be sticking in a directory labeled, "/usr/home/mystuff/".
|
|
|
|
|
anassamar wrote: I want to write my code ( Vc++) in txt file then I want to compile it, how I do that?
What do you mean exactly ? You want to load a text file at run-time and execute the code in that file at run-time ? If yes, then C++ is not meant for that. C++ is a compiled language and you can't execute code this way. You will need to use a scripting language for that purpose instead.
|
|
|
|