Search found 289 matches

by Ico
Sat Aug 26, 2006 12:40 pm
Forum: Beginners Help
Topic: "WinMain"
Replies: 18
Views: 1813

That "extern" shouldn't be there. ;)
by Ico
Fri Aug 25, 2006 1:43 pm
Forum: Beginners Help
Topic: How to darken screenshot?
Replies: 4
Views: 191

Just draw your Image (ITexture or whatever - haven't taken a look at the new Screenshot thingy...) and then use driver->draw2DRectangle(SColor(128,0,0,0),driver->getViewPort()); to change the color. It's also possible to draw the rectangle before taking the "screenshot" but drawing it ever...
by Ico
Fri Aug 25, 2006 1:55 am
Forum: Beginners Help
Topic: MSVC8 Runtime library
Replies: 1
Views: 122

This way (using the non-dll-version) your compiled executable/library won't require msvcrt80.dll and some other dll files. This way you won't have to install the new msvc8 runtime files on your "target systems". It (the dll-version) isn't that bad at all while using msvc6/7, but with msvc8...
by Ico
Tue Aug 22, 2006 11:48 pm
Forum: Beginners Help
Topic: conversion problem / editbox text
Replies: 4
Views: 278

It's easier (and more flexible) to do it this way (in the end only 2 lines of code): //Just need any temporary wchar_t variable wchar_t wcTemp[1025]; //Write the string swprintf(wcTemp,1024,L"%d",YOURINTEGER); // Set the text YOURTEXTCONTROLPOINTER->setText(wcTemp); It's quite easy to modi...