|
|
Please rephrase your query such that people can understand it. Also, the 'bold' font face doesn't particularly look charming.
It is a crappy thing, but it's life -^ Carlo Pallini
|
|
|
|
|
|
I see nothing different, other than some changes in font styling. If you can explain your difficulty better, I will be in a position to understand it and possibly offer you help.
It is a crappy thing, but it's life -^ Carlo Pallini
|
|
|
|
|
Purish Dwivedi wrote: I have created a multilingual application. When I am changing the language, the old language characters are not remove,while new language character is being overwritten.
Well, I suppose this is the true spirit of a MULTIlingual application.
BTW We're really genii, and we might guess your problem and find the solution without even seeing a single line of your code. Unfortunately we cannot fully exploit our superpowers here, to not shock the mean people.
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]
|
|
|
|
|
|
Purish Dwivedi wrote: WOW,
What an answer.
Well, question helped.
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]
|
|
|
|
|
In French we have an expression: "A question stupide, réponse stupide", which translates to "Stupid question, stupid answer". I think it makes complete sense here
|
|
|
|
|
In Italy we have a similar expression: "A domanda stupida, risposta intelligente" (well, I twisted a bit... ).
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]
|
|
|
|
|
|
Are you about to deleting delete that message too?
[added]
I suppose my guess was correct...
[/added]
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]
modified on Wednesday, April 29, 2009 6:26 AM
|
|
|
|
|
Hello Friends
How can i add text just with Mouse Cursor.Actually i m writing one case on MOUSEMOVE.So i want to display X and y Coordinates with Mouse Cursor.I m getting X and y Coordinates.But how to add with mouse cursor.
Thanks & Regards
yogesh
|
|
|
|
|
|
handle it in the targeted windows in which you want to draw. Than you can draw it in the paint routines or access the HDC of the window.
Press F1 for help or google it.
Greetings from Germany
|
|
|
|
|
I need to develop a coonection setting manger using vc++.but i know nothing about it.can anyone please help me in the project.
thanx in advance.
|
|
|
|
|
Do you nee connection setting manager for network configuration?
Of one Essence is the human race
thus has Creation put the base
One Limb impacted is sufficient
For all Others to feel the Mace
(Saadi )
|
|
|
|
|
Yes i want it for network settings.
|
|
|
|
|
in my DoModal dialog, i want to get the wm_Lbuttondown msg produced in other windows:
void CMyDlg::OnMouseMove(UINT nFlags, CPoint point)
{
HWND hWnd = SetCapture(m_hWnd);
CDialog::OnMouseMove(nFlags, point);
}
but i can only get the wm_mousemove msg but not the WM_Lbuttondown msg, and how to change my codes?
thank u very much.
|
|
|
|
|
outside your dialog it isnt your message => no way
except your others windows are informing your dialog via messaging.
Press F1 for help or google it.
Greetings from Germany
|
|
|
|
|
thank u. i resolved it by another way...
|
|
|
|
|
When your modal dialog is active, the other windows in your application are deactivated, so can't receive input like mouse button presses.
However - you do get WM_SETCURSOR messages[^] when mouse buttons are pressed outside the window, with the hi-word of the lParam set to the mouse-message that has caused the WM_SETCURSOR message.
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
How get unicode string( say Arabic ) from a RichEdit control and to draw that string in a DC using DrawText? Also I want to know how to store unicode string for later use?
|
|
|
|
|
Getting Unicode out of a rich-edit control:
- Use
EM_STREAMOUT [^] with the flags set to SF_TEXT|SF_UNICODE - Use SendMessageW (i.e. the Unicode variant of SendMessage) to send WM_GETTEXT to the control (IF there is less than 64K characters in the rich-edit control)
BenjaminBruno wrote: draw that string in a DC using DrawText
Just make sure you use the Unicode variant of DrawText and that the font you're drawing the text with has glyphs for the characters you want to display.
BenjaminBruno wrote: I want to know how to store unicode string for later use
How much later? If it's just within the same run of the program, then a variable of type CStringW[^] would do the job nicely. To save Unicode to a file on-disk, the routines in this article[^] look useful?
|
|
|
|
|
|
Hi
guys i have issue ,when access this function in Windows CE with C++
wce_AsciiToWide(szwBuf, (const char*)sz);
i'm using VS 2005 IDE
if i'm missing anything ?
thank you
|
|
|
|