[aprssig] Need some programming advice
Andrew Rich
vk4tec at people.net.au
Fri Aug 24 20:38:47 EDT 2007
Thanks Scott
That works a treat
Now I can make my own little aprs apps
----------------------------------------------------------------------------
Andrew Rich VK4TEC
vk4tec at people.net.au <mailto:vk4tec at people.net.au>
http://www.tech-software.net
-----Original Message-----
From: Scott Miller [mailto:scott at opentrac.org]
Sent: Saturday, 25 August 2007 10:03 AM
To: vk4tec at people.net.au; TAPR APRS Mailing List
Subject: Re: [aprssig] Need some programming advice
> 1. Visual Basic - it lets you move existing shapes, but not add new ones
Sure it does, it's just kind of non-obvious how it does it. The
following creates 10 circles in VB6:
Dim s(10) As VB.shape
Private Sub Form_Load()
Dim i As Integer
For i = 0 To 9
Set s(i) = Form1.Controls.Add("VB.Shape", "shp" & i)
s(i).Visible = True
s(i).Left = 1800 + (i * 150)
s(i).Top = 1500 + (i * 150)
s(i).shape = vbShapeCircle
Next
End Sub
The key is that you have to add each shape to the form's controls
collection.
> 2. Gambas for LINUX - can't seem to get the thing to install
> 3. JAVA - has potential - very new to me
> 4. PERL - I can quite happily use GD and PERL - but it is not very "live"
It's really not a language issue, it just depends on what GUI libraries
you're working with. Macromedia Flash could probably do it easily, I'm
just not very good with it and I haven't touched it in years.
Scott
N1VG
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.484 / Virus Database: 269.12.6/971 - Release Date: 24/08/2007
2:59 PM
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.484 / Virus Database: 269.12.6/971 - Release Date: 24/08/2007
2:59 PM
More information about the aprssig
mailing list