Harry
Member
|
Some questions about TextLine
1. Is it possible to add my Text or Gui style to TextLine object? Could you add this possibility?
2. I want to check if numbers was entered into TextLine. How can I do that?
|
|
08-20-2010 11:56 AM |
|
Dynad
Member
|
RE: Some questions about TextLine
Hey,
1. Well u can change it but only for all objects i believe.
name="gui/style/0/0.gstl";
GuiStyles("gui/style/0/0.gstl")->load(name);
2. well u can use this but that is normal c++
while (isdigit(MyVar[i]))
~Dynad
There is always evil somewhere, you just have to look for it properly.
|
|
08-20-2010 12:17 PM |
|
Harry
Member
|
RE: Some questions about TextLine
when I want to use isdigit i have this:
error C3861: 'isdigit': identifier not found
|
|
08-20-2010 08:10 PM |
|
Barthap
Member
|
RE: Some questions about TextLine
But isdigit needs to include header file
#include <ctype>
|
|
08-20-2010 08:40 PM |
|