Jump to content

Multi-Line Dialog.message Hatası


radyofon
 Share

Recommended Posts

Aşağıdaki scriptte Dialog.Message kısmındaki

okuyucuCategory..simCategory

bilgilerini alt alta yazdırmak istiyorum. okuyucuCategory ile simCategory arasına \r\n parametlerini koymama rağmen değişkenlerin cinsi nedeniyle yani text olmaması nedeniyle
komut çalışmıyor.

[xml]
--- Kart Okuyucu Seçimi ---

okuyucuSelected = ComboBox.GetSelected("ComboBox1");
if okuyucuSelected then
okuyucuCategory = ComboBox.GetItemText("ComboBox1", okuyucuSelected);

if okuyucuCategory == "Gemalto" then
elseif okuyucuCategory == "ACS" then
end
end

--- SIM Kart Seçimi ---

simSelected = ComboBox.GetSelected("ComboBox2");
if simSelected then
simCategory = ComboBox.GetItemText("ComboBox2", simSelected);

if simCategory == "AKİS v1.0" then
Dialog.Message("e-imza Kurulumu Aşağıda Seçtiğiniz Bilgilere Göre Başlıyor",okuyucuCategory..simCategory, MB_OKCANCEL)
elseif simCategory == "AKİS v1.2. veya v1.2.1" then
Dialog.Message("e-imza Kurulumu Aşağıda Seçtiğiniz Bilgilere Göre Başlıyor",okuyucuCategory..simCategory, MB_OKCANCEL)
end
end
[/xml]
Link to comment
Share on other sites

[code]
--- SIM Kart Seçimi ---
simSelected = ComboBox.GetSelected("ComboBox2");
if simSelected then
simCategory = ComboBox.GetItemText("ComboBox2", simSelected);

if simCategory == "AKİS v1.0" then
Dialog.Message("e-imza Kurulumu Aşağıda Seçtiğiniz Bilgilere Göre Başlıyor",okuyucuCategory.."\r\n"..simCategory, MB_OKCANCEL)
elseif simCategory == "AKİS v1.2. veya v1.2.1" then
Dialog.Message("e-imza Kurulumu Aşağıda Seçtiğiniz Bilgilere Göre Başlıyor",okuyucuCategory.."\r\n"..simCategory, MB_OKCANCEL)
end
end
[/code]

bunu bi dene istersen.

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