related to the basic helloworld program

Login to reply to this topic.
Thu, 2008-03-13 08:56
Joined: 2008-02-25
Forum posts: 33

hello
i m facing a prob at the time of studying helloworldbasic program
i couldn't find from where the string "Hello!" is taken, which is displayed when
hello is selected.

one more thing on selecting "option" in the same program a list is displaying that is
"hello from file", on selecting this list a blank screen is displayed.

as i go through the code i found that in the directory "inc" of the project, there is a .txt file.
and this command take the string from this file
so it should be display the content inside this file
which is also not happening

please help me...


Thu, 2008-03-13 09:02
Joined: 2005-12-07
Forum posts: 56
Re: related to the basic helloworld program

> i couldn't find from where the string "Hello!" is taken, which is displayed when
> hello is selected.

search for "Hello!" ..

> one more thing on selecting "option" in the same program a list is displaying that is
> "hello from file", on selecting this list a blank screen is displayed.

just see whether file is blank... if it is just try adding something to it...

basically you have to debug your application to get the answers to your question.

Thu, 2008-03-13 10:56
Joined: 2008-02-25
Forum posts: 33
Re: related to the basic helloworld program

hi 83.manish

you said that search for Hello!

friend i did it
and after that i asked this one

and also see the file
and this is not a blank file

ya i m going to debug the program

Thu, 2008-03-13 12:08
Joined: 2007-09-03
Forum posts: 25
Re: related to the basic helloworld program

It will be in the .rss file of the example. Reading the basic architecture of a GUI app may help you out here.

Sat, 2008-03-15 10:27
Joined: 2006-12-19
Forum posts: 72
Re: related to the basic helloworld program

You will find that in "HelloWorldBaisc.loc" in side the data folder.

It is defined like this:

//d:When user requests EHelloWorldBasicCommand1 event, text below is shown.
#define qtn_hewb_command1_text "Hello!"

To know why it is there read the basic architecture of a GUI app as suggested by aniait.

U can directly define the string to be displayed in the .rss file or in sparete .loc files if u r building app for more than one languagess.

Mon, 2008-03-17 06:45
Joined: 2006-11-22
Forum posts: 73
Re: related to the basic helloworld program

thanks i got it Smiling

  • Login to reply to this topic.