Click here to Skip to main content
15,887,135 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: need help getting jxta-c confgui to work Pin
pds847510-Oct-07 3:16
pds847510-Oct-07 3:16 
AnswerRe: need help getting jxta-c confgui to work Pin
jhwurmbach10-Oct-07 3:20
jhwurmbach10-Oct-07 3:20 
GeneralRe: need help getting jxta-c confgui to work Pin
pds847510-Oct-07 3:31
pds847510-Oct-07 3:31 
GeneralRe: need help getting jxta-c confgui to work Pin
jhwurmbach10-Oct-07 3:38
jhwurmbach10-Oct-07 3:38 
GeneralRe: need help getting jxta-c confgui to work Pin
pds847510-Oct-07 3:55
pds847510-Oct-07 3:55 
GeneralRe: need help getting jxta-c confgui to work Pin
jhwurmbach10-Oct-07 3:59
jhwurmbach10-Oct-07 3:59 
GeneralRe: need help getting jxta-c confgui to work Pin
pds847510-Oct-07 5:03
pds847510-Oct-07 5:03 
GeneralRe: need help getting jxta-c confgui to work Pin
Cedric Moonen10-Oct-07 3:57
Cedric Moonen10-Oct-07 3:57 
I don't want to sound harsh but I really think you should learn the C++ basics first. When I look at your replies, it seems that you don't really know what you are talking about.

Your function expects to receive a pointer to a specific structure (Jxta_index) so, why are you passing a string instead ?
You should fill a structure like that and pass its address to the function. And honnestly, I don't think anybody here will be able to help you more than that (because probably not a lot of people here know what jxta is).

pds8475 wrote:
if i use &Jxta_index i get a error saying illegal use of this type as an expression


Once again, this is basic C++: Jxta_index is a structure declaration, so as your compiler says you cannot use it as an expression. You need to create an instance of it:

Jxta_index myStruct;

Then fill it appropriately (should be documented somewhere I suppose) and then pass its address to your function.




Cédric Moonen
Software developer

Charting control [v1.2]

GeneralRe: need help getting jxta-c confgui to work Pin
pds847510-Oct-07 4:04
pds847510-Oct-07 4:04 
GeneralRe: need help getting jxta-c confgui to work Pin
Cedric Moonen10-Oct-07 4:20
Cedric Moonen10-Oct-07 4:20 
GeneralRe: need help getting jxta-c confgui to work Pin
pds847510-Oct-07 4:52
pds847510-Oct-07 4:52 
GeneralRe: need help getting jxta-c confgui to work Pin
jhwurmbach10-Oct-07 5:44
jhwurmbach10-Oct-07 5:44 
GeneralRe: need help getting jxta-c confgui to work Pin
pds847510-Oct-07 6:42
pds847510-Oct-07 6:42 
AnswerRe: need help getting jxta-c confgui to work [modified] Pin
David Crow10-Oct-07 3:23
David Crow10-Oct-07 3:23 
GeneralRe: need help getting jxta-c confgui to work Pin
pds847510-Oct-07 3:37
pds847510-Oct-07 3:37 
GeneralRe: need help getting jxta-c confgui to work Pin
David Crow10-Oct-07 3:55
David Crow10-Oct-07 3:55 
GeneralRe: need help getting jxta-c confgui to work Pin
pds847510-Oct-07 4:01
pds847510-Oct-07 4:01 
AnswerRe: need help getting jxta-c confgui to work Pin
David Crow10-Oct-07 3:58
David Crow10-Oct-07 3:58 
GeneralRe: need help getting jxta-c confgui to work Pin
pds847510-Oct-07 4:14
pds847510-Oct-07 4:14 
QuestionRe: need help getting jxta-c confgui to work Pin
David Crow10-Oct-07 4:17
David Crow10-Oct-07 4:17 
AnswerRe: need help getting jxta-c confgui to work Pin
pds847510-Oct-07 4:41
pds847510-Oct-07 4:41 
QuestionWindow Split Problem [modified] Pin
Shivarudrayya H10-Oct-07 1:11
Shivarudrayya H10-Oct-07 1:11 
AnswerRe: Window Split Problem Pin
Nishad S10-Oct-07 2:43
Nishad S10-Oct-07 2:43 
QuestionRe: Window Split Problem Pin
Shivarudrayya H10-Oct-07 2:57
Shivarudrayya H10-Oct-07 2:57 
AnswerRe: Window Split Problem Pin
Nishad S10-Oct-07 3:34
Nishad S10-Oct-07 3:34 

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.