About Store Forum Documentation Contact



Post Reply 
Some questions about TextLine
Author Message
Harry Offline
Member

Post: #1
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
Visit this user's website Find all posts by this user Quote this message in a reply
Dynad Offline
Member

Post: #2
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
Visit this user's website Find all posts by this user Quote this message in a reply
Harry Offline
Member

Post: #3
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
Visit this user's website Find all posts by this user Quote this message in a reply
Barthap Offline
Member

Post: #4
RE: Some questions about TextLine
But isdigit needs to include header file
#include <ctype>
08-20-2010 08:40 PM
Find all posts by this user Quote this message in a reply
Post Reply