Jump to content

Programın Son Kaldığı Sayfayı Kaydetme


Yusuf-Yildiz
 Share

Recommended Posts

[b]Arkadaşlar, programın nasıl kaydederim? Bu kayıtlı olan bilgiyide bir buton ile nasıl gösterebilirim? Label'da olur...[/b]
[b]
[/b]
[b]Edit: Soru2:[/b]
[b]
[/b]
[b]Bir sayfadaki buton ile başka bir sayfadaki RadioButonları Unchecked nasıl yaparım?[/b] Edited by severalnasty
Link to comment
Share on other sites

[quote name='severalnasty' date='05 December 2011 - 18:54 ' timestamp='1323104085' post='1124460']
[b]Açıklama için teşekkürler... [/b][img]http://www.tnctr.com/public/style_emoticons/default/sleep.gif[/img]
[/quote]

kardeş anlatım yapmadım sadece öneride bulundum.nasıl yaplıldığını anlatmamaı istersen pm ata bilirsin

Link to comment
Share on other sites

Sayfa On Showa

[quote]
1.Sayfa için:
Registry.SetValue(HKEY_LOCAL_MACHINE, "Software\\My Application", "Kayıt", "1", REG_SZ);
2.Sayfa için:
Registry.SetValue(HKEY_LOCAL_MACHINE, "Software\\My Application", "Kayıt", "2", REG_SZ);
3.Sayfa için:
Registry.SetValue(HKEY_LOCAL_MACHINE, "Software\\My Application", "Kayıt", "3", REG_SZ);[/quote]

Actions > Onstartupa

[quote]
i = Registry.GetValue(HKEY_LOCAL_MACHINE, "Software\\My Application", "Kayıt", true);
error = Application.GetLastError();
StatusDlg.Hide();
if error ~= 0 then
Registry.SetValue(HKEY_LOCAL_MACHINE, "Software\\My Application", "Kayıt", "1", REG_SZ);
i = Registry.GetValue(HKEY_LOCAL_MACHINE, "Software\\My Application", "Kayıt", true);
end

Page.Jump("Page"..i);[/quote]


Eğer Kaçıncı sayfada kaldığını aktarmak istersen

[quote]i = Registry.GetValue(HKEY_LOCAL_MACHINE, "Software\\My Application", "Kayıt", true);
Input.SetText("Input1", "Sayfa "..i);[/quote]

Edited by ReaLyMaN
Link to comment
Share on other sites

[quote name='ReaLyMaN' date='06 December 2011 - 21:02 ' timestamp='1323198121' post='1124907']
Sayfa On Showa



Actions > Onstartupa




Eğer Kaçıncı sayfada kaldığını aktarmak istersen


[/quote]
[b]
Hocam yine yardım ettiniz, teşekkürler... Ben içindekiler sayfasına test 1 ve test 2 şeklinde butonlar koyacağım. Kaçıncı sayfada kaldığını yazdırmak istersen demişsiniz, benim isteğim mesela 1. sayfada kaldıysa x resmini visible yapsın, 2. sayfada kaldıysa y resmini visible yapsın. İçindekiler sayfasındaki butonların yanına küçük bir ok koyacağım, o yüzden x, y resmi dedim. Nasıl yaparım?[/b]

Edited by severalnasty
Link to comment
Share on other sites

Kendine göre düzenlersin

[quote]i = String.ToNumber(Registry.GetValue(HKEY_LOCAL_MACHINE, "Software\\My Application", "Kayıt", true))

if i==1 then
Dialog.Message("Notice", "1", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
else if i==2 then
Dialog.Message("Notice", "2", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
else if i==3 then
Dialog.Message("Notice", "3", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
end
end
end[/quote]

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...