Click here to Skip to main content
16,013,605 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: What is comsuppw.lib? Pin
led mike31-Jul-08 7:17
led mike31-Jul-08 7:17 
QuestionUpper limit on the size of a program's command line arguments Pin
sashoalm31-Jul-08 5:32
sashoalm31-Jul-08 5:32 
AnswerRe: Upper limit on the size of a program's command line arguments Pin
David Crow31-Jul-08 5:38
David Crow31-Jul-08 5:38 
AnswerRe: Upper limit on the size of a program's command line arguments [modified] Pin
Randor 31-Jul-08 6:03
professional Randor 31-Jul-08 6:03 
GeneralRe: Upper limit on the size of a program's command line arguments Pin
sashoalm1-Aug-08 0:30
sashoalm1-Aug-08 0:30 
GeneralRe: Upper limit on the size of a program's command line arguments Pin
Randor 1-Aug-08 3:46
professional Randor 1-Aug-08 3:46 
QuestionHow to see an Arabic letter on an edit box? Pin
iayd31-Jul-08 5:23
iayd31-Jul-08 5:23 
AnswerRe: How to see an Arabic letter on an edit box? [modified] Pin
Matthew Faithfull31-Jul-08 5:40
Matthew Faithfull31-Jul-08 5:40 
You could try just creating an array of WCHARs and intializing it with numeric values.

<br />
WCHAR aTestString[10] = <br />
{<br />
 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 0000<br />
};<br />
<br />
m_edit.SetWindowText( aTestString );<br />


Not a way to test 300 characters but at least you should see whether it works without involving the comlpexities of printf formating.

I've implemented Arabic support on a WinCE application and it's far from simple partly because much of the Uniscribe API is unusably slow on a 200Mhz ARM processor.

"The secret of happiness is freedom, and the secret of freedom, courage."
Thucydides (B.C. 460-400)

modified on Thursday, July 31, 2008 12:06 PM

AnswerRe: How to see an Arabic letter on an edit box? Pin
Iain Clarke, Warrior Programmer31-Jul-08 23:45
Iain Clarke, Warrior Programmer31-Jul-08 23:45 
QuestionDisable Mouse Dragging on a Child Window Pin
Shyam Kodase31-Jul-08 4:00
Shyam Kodase31-Jul-08 4:00 
AnswerRe: Disable Mouse Dragging on a Child Window Pin
Perspx31-Jul-08 7:03
Perspx31-Jul-08 7:03 
QuestionC4430 Pin
T.RATHA KRISHNAN31-Jul-08 3:13
T.RATHA KRISHNAN31-Jul-08 3:13 
AnswerRe: C4430 Pin
CPallini31-Jul-08 3:17
mveCPallini31-Jul-08 3:17 
GeneralRe: C4430 Pin
T.RATHA KRISHNAN31-Jul-08 3:30
T.RATHA KRISHNAN31-Jul-08 3:30 
GeneralRe: C4430 Pin
Iain Clarke, Warrior Programmer31-Jul-08 3:33
Iain Clarke, Warrior Programmer31-Jul-08 3:33 
GeneralRe: C4430 Pin
T.RATHA KRISHNAN31-Jul-08 3:41
T.RATHA KRISHNAN31-Jul-08 3:41 
GeneralRe: C4430 Pin
Iain Clarke, Warrior Programmer31-Jul-08 4:34
Iain Clarke, Warrior Programmer31-Jul-08 4:34 
GeneralRe: C4430 Pin
CPallini31-Jul-08 3:38
mveCPallini31-Jul-08 3:38 
GeneralRe: C4430 Pin
T.RATHA KRISHNAN31-Jul-08 3:44
T.RATHA KRISHNAN31-Jul-08 3:44 
GeneralRe: C4430 Pin
CPallini31-Jul-08 3:46
mveCPallini31-Jul-08 3:46 
GeneralRe: C4430 Pin
T.RATHA KRISHNAN31-Jul-08 3:51
T.RATHA KRISHNAN31-Jul-08 3:51 
QuestionRe: C4430 Pin
CPallini31-Jul-08 4:02
mveCPallini31-Jul-08 4:02 
AnswerRe: C4430 Pin
T.RATHA KRISHNAN31-Jul-08 4:08
T.RATHA KRISHNAN31-Jul-08 4:08 
GeneralRe: C4430 Pin
Alan Balkany31-Jul-08 3:42
Alan Balkany31-Jul-08 3:42 
QuestionExcel automation compatibility problem Pin
followait31-Jul-08 1:26
followait31-Jul-08 1:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.