Change line in a Tabel?
Blitz3D Forums/Blitz3D Beginners Area/Change line in a Tabel?
| ||
I forgot how to change lines in a Tabel... How do I do it, I might use it more then onces for the same tabel.. Thanks |
| ||
What is a Tabel ? |
| ||
guess he's talking about a table. no idea what table. mysql? html? |
| ||
Kaisuo has a serious problem of expecting others to be able to read his/her mind... |
| ||
Whatever, I meant Label >.> for thoses of you would DONT know whats a label and couldnt tell I meant label this is a label: CreateLabel( text$,x,y,width,height,group[,style] ) Wolron, he/her should know that not everyone speak fluently english and not everyone is a pro at remembering every single command like a little nerd. (no offence anyone) |
| ||
You really need to learn to take criticism on the chin, especially from all us nerds. :) You can change the text in a Label, with the SetGadgetText command. In BlitzPlus all GUI elements are Gadgets including Windows. So, some commands can be used on lots of different things. |
| ||
Yeah I notice, however the GUI needs more work from Mark... I have alot of suggestion but Mark doesnt have the suggestion forum anymore.. so.. like asking to get WinXP style Gadgets would be nice like sliders and stuff |
| ||
SetGadgetText gadget,text$ has nothing to change line its something like "text" + chr$() + "text" |
| ||
I'm not sure what you are asking for. Are you looking to put in line-returns? to have multiple lines? ---------------------------- BlitzPlus already has sliders. There are many things you see in applications that are non-standard gadgets. They aren't part of the Windows API. Having said that, MDI (for windows inside windows) for example, is part of the Win API. |
| ||
What I mean is like: "Hello My name is Alex." + chr$().. + "I come from somewhere." Which would come out like this: Hello My name is Alex. I come from somewhere. NOT: Hello My name is Alex. I come from somewhere. Do you understand what I mean, I just wana do that :D |
| ||
I know that this can vary depending on the version of Windows but try: SetGadgetText label, "Hello My name is Alex"+Chr(10)+"I come from somewhere." or SetGadgetText label, "Hello My name is Alex"+Chr(13)+"I come from somewhere." or SetGadgetText label, "Hello My name is Alex"+Chr(10)+Chr(13)+"I come from somewhere." They all work on Windows 98SE. |
| ||
works like a charm thanks. |
| ||
Wolron, he/her should know that not everyone speak fluently english and not everyone is a pro at remembering every single command like a little nerd. (no offence anyone) I didn't mention anything about poor english or bad grammer. What I said was that you expect others to be able to read your mind. In other words, you don't tell us enough information about the problem or clearly state what your question is. This question: I forgot how to change lines in a Tabel... How do I do it, I might use it more then onces for the same tabel.. could have been followed by an example such as the one you posted only AFTER I made my comment: CreateLabel( text$,x,y,width,height,group[,style] ) to make yourself more clear.Case in point, you misspelled label as tabel (twice even) and no one had any idea what you were talking about. If you had posted more information (such as you did later with the command CreateLabel) then someone might have figured it out. I'm not trying to be rude, I'm just trying to say to make your posts as readable as possible if you want help. I can't help you if I don't understand you. |