Search found 46 matches

by giuseppegam
Thu Sep 11, 2008 2:31 pm
Forum: Beginners Help
Topic: Key Pressed duplicate
Replies: 3
Views: 271

JP wrote:I don't know whether it will help but instead of 'break' you should return true...
His solution satisfied, thank you
by giuseppegam
Thu Sep 11, 2008 2:15 pm
Forum: Beginners Help
Topic: Key Pressed duplicate
Replies: 3
Views: 271

Key Pressed duplicate

Hi, plase help, y event receiver is receiving Input Key Event doubled.


if (event.EventType == irr::EET_KEY_INPUT_EVENT&&!event.KeyInput.PressedDown)
{

switch(event.KeyInput.Key)
{
case KEY_RETURN:
guienv->addMessageBox(L"Error",L"1",0,EMBF_OK);
break;


}

}

I get two windows writing ...
by giuseppegam
Thu Sep 11, 2008 2:14 pm
Forum: Beginners Help
Topic: Key Pressed duplicate
Replies: 1
Views: 181

Key Pressed duplicate

Hi, plase help, y event receiver is receiving Input Key Event doubled.


if (event.EventType == irr::EET_KEY_INPUT_EVENT&&!event.KeyInput.PressedDown)
{

switch(event.KeyInput.Key)
{
break;

}//final do switch(event.KeyInput.Key)

}// final do if (node != 0 && event.EventType == irr::EET_KEY ...
by giuseppegam
Tue Sep 09, 2008 1:29 pm
Forum: Beginners Help
Topic: EditBox originally selected
Replies: 2
Views: 229

Very Thanks ^^
by giuseppegam
Tue Sep 09, 2008 1:11 pm
Forum: Beginners Help
Topic: EditBox originally selected
Replies: 2
Views: 229

EditBox originally selected

I would like to make the editbox open already selected, I am making a login screen, and I wish that were already in the editbox edition, there must click to select and edit later, as I do?

Thanks
by giuseppegam
Mon Sep 08, 2008 7:13 pm
Forum: Beginners Help
Topic: setDrawBorder Error
Replies: 1
Views: 215

setDrawBorder Error

Hi,I have a problem


IGUIEditBox* login;
login=guienv->addEditBox(L"gam",rect<s32>(421, 566, 672, 578), true, 0, 1);
login->setDrawBorder(false);


Error:

24 C:\Dev-Cpp\Projetos\quiz 3.0\room\principal.h 'class irr::gui::IGUIEditBox' has no member named 'setDrawBorder'


IrrLicht 1.3
by giuseppegam
Sat Aug 30, 2008 4:01 pm
Forum: Beginners Help
Topic: Command My event receiver KeyInput.Key
Replies: 2
Views: 343

phoboss wrote:KEY_ESCAPE for ESC and KEY_RETURN for ENTER.
Thanks
by giuseppegam
Sat Aug 30, 2008 3:28 pm
Forum: Beginners Help
Topic: Command My event receiver KeyInput.Key
Replies: 2
Views: 343

Command My event receiver KeyInput.Key

Hi, please, which command esc end enter, example key press Q KEY_KEY_Q,
I would like to know what the ESC key and ENTER

Thanks
by giuseppegam
Thu Aug 14, 2008 6:11 pm
Forum: Beginners Help
Topic: Stop -device->run();
Replies: 0
Views: 92

Stop -device->run();

There is as stopping

Code: Select all

 device-> run() not using closeDevice ();
by giuseppegam
Thu Aug 14, 2008 6:10 pm
Forum: Beginners Help
Topic: Stop device->run();
Replies: 0
Views: 89

Stop device->run();

There is as stopping

Code: Select all

 device-> run() not using closeDevice ();
by giuseppegam
Thu Aug 14, 2008 6:06 pm
Forum: Beginners Help
Topic: Stop device->run();
Replies: 0
Views: 80

Stop device->run();

There is as stopping device-> run () without using closeDevice ();
by giuseppegam
Thu Aug 14, 2008 6:05 pm
Forum: Beginners Help
Topic: Stop device->run();
Replies: 0
Views: 154

Stop device->run();

There is as stopping device-> run () without using closeDevice ();
by giuseppegam
Thu Aug 14, 2008 2:33 pm
Forum: Beginners Help
Topic: All GuiElement alpha chanel
Replies: 3
Views: 299

Hello, you did not understand, all my GUI element are transparent, as in the picture, but I want them normal, I do not know where I was in error set them transparent.
by giuseppegam
Thu Aug 14, 2008 2:19 pm
Forum: Beginners Help
Topic: All GuiElement alpha chanel
Replies: 3
Views: 299

All GuiElement alpha chanel

Hi,
are all elements of guielement on alpha chanel, leave as normal?

Imagem game
http://img167.imageshack.us/img167/5926/imagemtu7.th.jpg


#include <irrlicht.h>
#include <sqlite3.h>
using namespace irr;
#include "funcoes.h"
using namespace core;
using namespace scene;
using namespace video ...
by giuseppegam
Wed Aug 13, 2008 7:22 pm
Forum: Beginners Help
Topic: convert stringw to const char
Replies: 4
Views: 2008

following error


funcoes.h: In function `wchar_t* ConvertToWChar(char*)':
funcoes.h:13: error: `_TRUNCATE' undeclared (first use this function)
funcoes.h:13: error: (Each undeclared identifier is reported only once for each function it appears in.)
funcoes.h:13: error: `mbstowcs_s' undeclared ...