Click here to Skip to main content
15,884,298 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Adding ActiveX Control Container to Win32 Window Pin
snacker21-Jun-09 20:42
snacker21-Jun-09 20:42 
GeneralRe: Adding ActiveX Control Container to Win32 Window Pin
Stuart Dootson1-Jun-09 20:49
professionalStuart Dootson1-Jun-09 20:49 
GeneralRe: Adding ActiveX Control Container to Win32 Window Pin
snacker25-Jun-09 7:51
snacker25-Jun-09 7:51 
GeneralRe: Adding ActiveX Control Container to Win32 Window Pin
Stuart Dootson5-Jun-09 7:57
professionalStuart Dootson5-Jun-09 7:57 
GeneralRe: Adding ActiveX Control Container to Win32 Window Pin
Stuart Dootson1-Jun-09 20:52
professionalStuart Dootson1-Jun-09 20:52 
GeneralRe: Adding ActiveX Control Container to Win32 Window Pin
snacker25-Jun-09 7:55
snacker25-Jun-09 7:55 
QuestionAppending a number to the end of a string to display in GLUI_ EDITTEXT_TEXT Box? Pin
bushimports26-May-09 11:41
bushimports26-May-09 11:41 
AnswerRe: Appending a number to the end of a string to display in GLUI_ EDITTEXT_TEXT Box? Pin
Stuart Dootson26-May-09 12:56
professionalStuart Dootson26-May-09 12:56 
bushimports wrote:
I have everything working ok except the name and number will only display one character at a time in the textbox and increments the position each time the draw button is pushed


I think your problem is that you're only passing in one character to the add_edittext call. I don't know what the signature of the method is, but &Name can only refer to a single character (and then, so long as a coincidence of code generation puts zero bytes on the stack.

Anyway I think the problem would probably be solved by
  1. Declaring Name as char* Name;
  2. Changing how you assign Name, from
    Name = Plane[Pnum];

    and
    Name = Cube[Cnum];


    to

    Name = Plane;

    and
    Name = Cube;


Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

QuestionHow to save javascript file Pin
yunpil26-May-09 11:22
yunpil26-May-09 11:22 
AnswerRe: How to save javascript file Pin
David Crow26-May-09 17:00
David Crow26-May-09 17:00 
AnswerRe: How to save javascript file Pin
ThatsAlok26-May-09 22:13
ThatsAlok26-May-09 22:13 
Questionget the differents data from a list control Pin
MrKBA26-May-09 8:55
MrKBA26-May-09 8:55 
QuestionRe: get the differents data from a list control Pin
David Crow26-May-09 9:09
David Crow26-May-09 9:09 
AnswerRe: get the differents data from a list control Pin
MrKBA26-May-09 9:12
MrKBA26-May-09 9:12 
QuestionRe: get the differents data from a list control Pin
David Crow26-May-09 9:14
David Crow26-May-09 9:14 
AnswerRe: get the differents data from a list control Pin
MrKBA26-May-09 9:19
MrKBA26-May-09 9:19 
GeneralRe: get the differents data from a list control Pin
David Crow26-May-09 9:27
David Crow26-May-09 9:27 
GeneralRe: get the differents data from a list control Pin
MrKBA26-May-09 9:41
MrKBA26-May-09 9:41 
QuestionRe: get the differents data from a list control Pin
Maximilien26-May-09 9:30
Maximilien26-May-09 9:30 
AnswerRe: get the differents data from a list control Pin
MrKBA26-May-09 9:33
MrKBA26-May-09 9:33 
GeneralRe: get the differents data from a list control Pin
Maximilien26-May-09 9:34
Maximilien26-May-09 9:34 
GeneralRe: get the differents data from a list control Pin
David Crow26-May-09 9:36
David Crow26-May-09 9:36 
AnswerRe: get the differents data from a list control Pin
MrKBA26-May-09 12:57
MrKBA26-May-09 12:57 
QuestionRe: get the differents data from a list control Pin
David Crow26-May-09 17:02
David Crow26-May-09 17:02 
AnswerRe: get the differents data from a list control Pin
MrKBA26-May-09 22:37
MrKBA26-May-09 22:37 

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.