Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. govindalopez

    Get mac address

    Have you tried the GetEnviorment command?
  2. govindalopez

    Hiding the Title Bar of a Main Window

    You can have this done either at design time or at execution time. The first would be disabling the check box for MaxBox, MinBox, Resizable. The second can be done by seting to false the next values in it's parent class: titlebar = false minbox = false maxbox = false resizable = false...
  3. govindalopez

    Changing between objects using FOR-END FOR

    Thanks for your answer. I found another way, yet similar to yours, to do it. SingleLineEdit sle_box[] INTEGER li_x = 0 FOR li_x = 1 TO 5 sle_box[li_x] = CREATE SingleLineEdit sle_box[li_x].width = 180 sle_box[li_x].height = 60 sle_box[li_x].text = string(ii_variable[li_x])...
  4. govindalopez

    Changing between objects using FOR-END FOR

    Hi, Can anyone please help me on this. I want to place a value in the text property of a single line edit. The thing is that I have 10 single line edit's and I want to take the values from an array. Basically what I need is something like this: FOR x = 1 TO 10...

Part and Inventory Search

Back
Top