با سلام و حسته نباشید خدمت کاربران عزیز YAHOO 98
ان شاءالله که سیزده بدرتون بدر باشه .
دانلود کتابخانه ها
دانلود سورس
#Region Project Attributes #ApplicationLabel: B4A Example #VersionCode: 1 #VersionName: 'SupportedOrientations possible values: unspecified, landscape or portrait. #SupportedOrientations: unspecified #CanInstallToExternalStorage: False #End Region #Region Activity Attributes #FullScreen: False #IncludeTitle: True #End Region Sub Process_Globals 'These global variables will be declared once when the application starts. 'These variables can be accessed from all modules. End Sub Sub Globals 'These global variables will be redeclared each time the activity is created. 'These variables can only be accessed from this module. Private wv1,wv2 As WhorlView End Sub Sub Activity_Create(FirstTime As Boolean) 'Do not forget to load the layout file created with the visual designer. For example: Activity.LoadLayout("Layout1") 'wv1.DefaultColors = "#F44336_#4CAF50_#5677fc" wv1.SweepAngle = 50 wv1.StrokeWidth = 1 wv1.LayerColors = Array As Int(Colors.Blue,Colors.Red,Colors.Yellow,Colors.Green) wv2.SweepAngle = 200 wv2.StrokeWidth = 5 wv2.LayerColors = Array As Int(Colors.Blue,Colors.Red,Colors.Yellow,Colors.Green) End Sub Sub Activity_Resume wv1.start wv2.start End Sub Sub Activity_Pause (UserClosed As Boolean) wv1.stop wv2.stop End Sub