View Single Post
  #7 (permalink)  
Old 12-03-2008, 04:40 PM
taximania's Avatar
taximania taximania is offline
Basic4ppc Expert
 
Join Date: May 2007
Location: Derbyshire. UK
Posts: 592
Awards Showcase
Beta Tester 
Total Awards: 1
Default

This modified version of Erel's code works on my XDA.
'Modify the pictures location to suit your device.'
All it does is check the directory, and loads the newest picture,
(the one that's just been took).
Green bit below is optional.


Code:
Sub Globals
 tick = 
0
End Sub

Sub App_Start
 Form1.Show
 process.New1
 hardware.New1
 timer1.Interval = 
5000
End Sub

Sub Button1_Click
 timer1.Enabled = 
True
process.Start(
"\windows\camera.exe","")
End Sub

Sub AfterPicture
 ArrayList1.Clear
 FileSearch(ArrayList1,
"<font color="Blue">\Storage Card\My Documents\My Pictures\</font>","*.jpg")
 
file=ArrayList1.Item(arraylist1.Count-1)
 <font color=
"lime">label1.Text = file 'full path and file name
 'label1.Text = FileName(file) 'just file name</font>
 image1.Image = file
End Sub

Sub Timer1_Tick
 tick = tick + 
1
 
If tick = 1 Then 'take picture
  hardware.KeyPress(13)
 
Else
  timer1.Enabled = 
False
  process.CloseMainWindow
  tick = 
0
  AfterPicture
 
End If
End Sub
Attached Files
File Type: sbp TakePicture.sbp (1.2 KB, 118 views)
__________________
.
.
.
Don't ask, I'm fine, honest. !!
.
.
.
Just a little crazy at times



O2 XDA, GW Evo 2.1 UC WWE Rom, WM6.1
Radio Ver 03.34.90
With Basic4ppc V6.80


http://www.taximania.co.uk

Last edited by taximania : 12-03-2008 at 04:44 PM.
Reply With Quote