Search found 5 matches

by delfy
Tue Sep 02, 2003 8:40 pm
Forum: Beginners Help
Topic: Getting resolution
Replies: 6
Views: 4055

Not yet. Coming in next release.
is this possible now???
by delfy
Tue Aug 26, 2003 6:11 pm
Forum: Beginners Help
Topic: Getting resolution
Replies: 6
Views: 4055

1. OK, Thanks!!
2. Yes, I am using DevC++
by delfy
Tue Aug 26, 2003 2:06 pm
Forum: Beginners Help
Topic: Getting resolution
Replies: 6
Views: 4055

Getting resolution

1. How can I get resolution of desktop???

2. I have problem with DIRECTX.
When I run application with parameter DT_DIRECTX8, it start and immediately close - nothing shown!! Why??? When I start with DT_SOFTWARE it works OK.
by delfy
Mon Aug 25, 2003 9:24 pm
Forum: Beginners Help
Topic: Problem: Adding static text
Replies: 3
Views: 4599

Code: Select all

irrGUIEnv->addStaticText( 
            L"Krneki", 
            false, 
            rect<int>(10,10,500,50));
This static text i can't see!! Why
by delfy
Mon Aug 25, 2003 2:48 pm
Forum: Beginners Help
Topic: Problem: Adding static text
Replies: 3
Views: 4599

Problem: Adding static text

I have a code


// HelloUniverse.cpp
// Include the Irrlicht header
#include <irrlicht.h>

// Irrlicht Namespaces
using namespace irr;
using namespace core;
using namespace scene;
using namespace video;
using namespace io;
using namespace gui;


int main()
{
IrrlichtDevice *irrDevice ...