Jump to content
tdxev

AutoSms [for windows mobile phones]

Recommended Posts

Majoritatea framework-urilor .NET sunt compatibile si cross-platform (numai pe versiunile Windows). De exemplu, programul tau pe .NET Framework 3.5 va functiona si pe .NET Framework 4.0. Iar daca este conceput pe XP, el va rula si pe Vista si 7.

Programul este scris in VB.NET sau C#?

Daca da, iti recomand sa treci la ceva mai serios. .NET suge din punctul meu de vedere. Treci pe un limbaj mai portabil. .NET se incarca greu si nu ruleaza pe platformele care nu au framework-ul instalat (si aici nu functioneaza faza cu compilare statica/dinamica).

Incearca sa scapi de Visual Programming.

Edited by Thidex
Link to comment
Share on other sites

Este facut pentru "windows mobile" eu ma refeream ca majoritatea telefoanelor vin instalate cu framework 2.5 nu 3.5. Este scris in VB.NET

@Thidex , tdxev a zis "A fost construit " deci de aici rezulta k nu el l-a construit :)

Cata dreptare ai, l-a facut bunica.. :P este experta in programare la 5 ani scria programe in asm este cea mai tare! Cum trageti voi concluzi :))

LATER :

ca de obicei am ajuns la concluzia ca VB .NET este de cacao iar versiune pentru windows mobile(sau poate chiar windows mobile) este si mai de cacao doua probleme care ma-au facut sa ajung la aceasta concluzie:

-http://www.christec.co.nz/blog/archives/146

-http://dalelane.co.uk/blog/?p=212

asa ca BETA o sa ramana :))

tot codul asta pentru a pune un simplu meniu (copy/paste/cut/undo) pentru un text box:


Private Sub MenuItem3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem3.Click
TextBox1.SelectedText = Clipboard.GetDataObject.GetData(System.Windows.Forms.DataFormats.StringFormat, True)
End Sub
Private Sub MenuItem4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem4.Click
Clipboard.SetDataObject(TextBox1.SelectedText)
End Sub
Private Sub MenuItem5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem5.Click
Clipboard.SetDataObject(TextBox1.SelectedText)
TextBox1.SelectedText = ""
End Sub
Private Sub MenuItem6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem6.Click
TextBox1.Undo()
End Sub

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.

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.



×
×
  • Create New...