Jump to content

Project Explorer Ağaç Yapısında Sıralama


radyofon
 Share

Recommended Posts

Project Explorer ağaç yapısındaki sıramayı alfabetik olarak sıralamak mümkün mü? CheckBox ların sıralaması karışık. Bunları sıralamaya sokmak mümkün mü?

[img]http://www.tnctr.com/uploads/imgs/pre_1339656353__project_explorer.png[/img]

Link to comment
Share on other sites

OnPreload
[code]

day = System.GetDate(DATE_FMT_DAY);
month = System.GetDate(DATE_FMT_MONTH);
year = System.GetDate(DATE_FMT_YEAR);
Label.SetText("Tarih", ""..day..":"..month..":"..year.."");
Page.StartTimer(100);[/code]
OnTimer
[code]

day = System.GetDate(DATE_FMT_DAY);
month = System.GetDate(DATE_FMT_MONTH);
year = System.GetDate(DATE_FMT_YEAR);
Label.SetText("Tarih", ""..day..":"..month..":"..year.."");
Page.StartTimer(100);[/code]

Link to comment
Share on other sites

[b]On Preload ;[/b]

[code]Page.StartTimer(1000);[/code]

[b]On Timer ;[/b]

[codebox]
day = System.GetDate(DATE_FMT_DAY);
month = System.GetDate(DATE_FMT_MONTH);
year = System.GetDate(DATE_FMT_YEAR);
Label.SetText("Tarih", day..":"..month..":"..year);
[/codebox]

[b]Böyle daha iyi.[/b]

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...