Click here to Skip to main content
16,014,677 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to recive mail from POP3 Server in VB.Net 2005? Pin
MidwestLimey22-Oct-07 12:43
professionalMidwestLimey22-Oct-07 12:43 
QuestionTechnology Conference Registration, need help Pin
jesseax19-Oct-07 16:52
jesseax19-Oct-07 16:52 
AnswerRe: Technology Conference Registration, need help Pin
Scott Dorman19-Oct-07 18:18
professionalScott Dorman19-Oct-07 18:18 
GeneralRe: Technology Conference Registration, need help Pin
jesseax21-Oct-07 17:14
jesseax21-Oct-07 17:14 
Questionusing ErrorProvider in VB HELP!! [modified] Pin
vbDigger'z19-Oct-07 16:13
vbDigger'z19-Oct-07 16:13 
QuestionProblems with Tic Tac Toe game in VB 2005 Pin
JeffMonty19-Oct-07 15:27
JeffMonty19-Oct-07 15:27 
AnswerRe: Problems with Tic Tac Toe game in VB 2005 Pin
Luc Pattyn19-Oct-07 16:12
sitebuilderLuc Pattyn19-Oct-07 16:12 
AnswerRe: Problems with Tic Tac Toe game in VB 2005 Pin
bapu288921-Oct-07 7:57
bapu288921-Oct-07 7:57 
Hi this is the complite project so just copy and past in to ur project

good luck

take care
*********************************************
Option Explicit On
Option Strict On
Public Class frmTicTacToe
Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

Public Sub New()
MyBase.New()

'This call is required by the Windows Form Designer.
InitializeComponent()

'Add any initialization after the InitializeComponent() call

End Sub

'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub

'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer

'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents Label3 As System.Windows.Forms.Label
Friend WithEvents Label4 As System.Windows.Forms.Label
Friend WithEvents Label5 As System.Windows.Forms.Label
Friend WithEvents picMark1 As System.Windows.Forms.PictureBox
Friend WithEvents picMark2 As System.Windows.Forms.PictureBox
Friend WithEvents picTurn As System.Windows.Forms.PictureBox
Friend WithEvents picMark3 As System.Windows.Forms.PictureBox
Friend WithEvents picMark4 As System.Windows.Forms.PictureBox
Friend WithEvents picMark5 As System.Windows.Forms.PictureBox
Friend WithEvents picMark6 As System.Windows.Forms.PictureBox
Friend WithEvents picMark7 As System.Windows.Forms.PictureBox
Friend WithEvents picMark8 As System.Windows.Forms.PictureBox
Friend WithEvents picMark9 As System.Windows.Forms.PictureBox
Friend WithEvents picEarth As System.Windows.Forms.PictureBox
Friend WithEvents picSun As System.Windows.Forms.PictureBox
Friend WithEvents btnReset As System.Windows.Forms.Button
Friend WithEvents lblTurn As System.Windows.Forms.Label
Friend WithEvents btnExit As System.Windows.Forms.Button
Friend WithEvents picTie As System.Windows.Forms.PictureBox
Friend WithEvents MainMenu1 As System.Windows.Forms.MainMenu
Friend WithEvents mnuFile As System.Windows.Forms.MenuItem
Friend WithEvents mnuFileNew As System.Windows.Forms.MenuItem
Friend WithEvents mnuFileTotal As System.Windows.Forms.MenuItem
Friend WithEvents mnuFileBar As System.Windows.Forms.MenuItem
Friend WithEvents mnuFileExit As System.Windows.Forms.MenuItem
Friend WithEvents mnuHelp As System.Windows.Forms.MenuItem
Friend WithEvents mnuHelpAbout As System.Windows.Forms.MenuItem
<system.diagnostics.debuggerstepthrough()> Private Sub InitializeComponent()
Dim resources As System.Resources.ResourceManager = New System.Resources.ResourceManager(GetType(frmTicTacToe))
Me.lblTurn = New System.Windows.Forms.Label
Me.Label2 = New System.Windows.Forms.Label
Me.Label3 = New System.Windows.Forms.Label
Me.Label4 = New System.Windows.Forms.Label
Me.Label5 = New System.Windows.Forms.Label
Me.picMark1 = New System.Windows.Forms.PictureBox
Me.picMark2 = New System.Windows.Forms.PictureBox
Me.picMark3 = New System.Windows.Forms.PictureBox
Me.picMark4 = New System.Windows.Forms.PictureBox
Me.picMark5 = New System.Windows.Forms.PictureBox
Me.picMark6 = New System.Windows.Forms.PictureBox
Me.picMark7 = New System.Windows.Forms.PictureBox
Me.picMark8 = New System.Windows.Forms.PictureBox
Me.picMark9 = New System.Windows.Forms.PictureBox
Me.btnReset = New System.Windows.Forms.Button
Me.picEarth = New System.Windows.Forms.PictureBox
Me.picSun = New System.Windows.Forms.PictureBox
Me.picTurn = New System.Windows.Forms.PictureBox
Me.btnExit = New System.Windows.Forms.Button
Me.picTie = New System.Windows.Forms.PictureBox
Me.MainMenu1 = New System.Windows.Forms.MainMenu
Me.mnuFile = New System.Windows.Forms.MenuItem
Me.mnuFileNew = New System.Windows.Forms.MenuItem
Me.mnuFileTotal = New System.Windows.Forms.MenuItem
Me.mnuFileBar = New System.Windows.Forms.MenuItem
Me.mnuFileExit = New System.Windows.Forms.MenuItem
Me.mnuHelp = New System.Windows.Forms.MenuItem
Me.mnuHelpAbout = New System.Windows.Forms.MenuItem
Me.SuspendLayout()
'
'lblTurn
'
Me.lblTurn.Font = New System.Drawing.Font("Microsoft Sans Serif", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.lblTurn.Location = New System.Drawing.Point(200, 16)
Me.lblTurn.Name = "lblTurn"
Me.lblTurn.Size = New System.Drawing.Size(104, 32)
Me.lblTurn.TabIndex = 0
Me.lblTurn.Text = "Turn"
Me.lblTurn.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
'
'Label2
'
Me.Label2.BackColor = System.Drawing.Color.Blue
Me.Label2.Location = New System.Drawing.Point(160, 80)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(8, 440)
Me.Label2.TabIndex = 1
'
'Label3
'
Me.Label3.BackColor = System.Drawing.Color.Blue
Me.Label3.Location = New System.Drawing.Point(336, 80)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(8, 440)
Me.Label3.TabIndex = 2
'
'Label4
'
Me.Label4.BackColor = System.Drawing.Color.Blue
Me.Label4.Location = New System.Drawing.Point(8, 216)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(496, 8)
Me.Label4.TabIndex = 3
'
'Label5
'
Me.Label5.BackColor = System.Drawing.Color.Blue
Me.Label5.Location = New System.Drawing.Point(8, 376)
Me.Label5.Name = "Label5"
Me.Label5.Size = New System.Drawing.Size(496, 8)
Me.Label5.TabIndex = 4
'
'picMark1
'
Me.picMark1.Location = New System.Drawing.Point(40, 96)
Me.picMark1.Name = "picMark1"
Me.picMark1.Size = New System.Drawing.Size(90, 90)
Me.picMark1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.picMark1.TabIndex = 5
Me.picMark1.TabStop = False
'
'picMark2
'
Me.picMark2.Location = New System.Drawing.Point(208, 96)
Me.picMark2.Name = "picMark2"
Me.picMark2.Size = New System.Drawing.Size(90, 90)
Me.picMark2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.picMark2.TabIndex = 6
Me.picMark2.TabStop = False
'
'picMark3
'
Me.picMark3.Location = New System.Drawing.Point(384, 96)
Me.picMark3.Name = "picMark3"
Me.picMark3.Size = New System.Drawing.Size(90, 90)
Me.picMark3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.picMark3.TabIndex = 7
Me.picMark3.TabStop = False
'
'picMark4
'
Me.picMark4.Location = New System.Drawing.Point(40, 256)
Me.picMark4.Name = "picMark4"
Me.picMark4.Size = New System.Drawing.Size(90, 90)
Me.picMark4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.picMark4.TabIndex = 8
Me.picMark4.TabStop = False
'
'picMark5
'
Me.picMark5.Location = New System.Drawing.Point(208, 256)
Me.picMark5.Name = "picMark5"
Me.picMark5.Size = New System.Drawing.Size(90, 90)
Me.picMark5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.picMark5.TabIndex = 9
Me.picMark5.TabStop = False
'
'picMark6
'
Me.picMark6.Location = New System.Drawing.Point(384, 256)
Me.picMark6.Name = "picMark6"
Me.picMark6.Size = New System.Drawing.Size(90, 90)
Me.picMark6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.picMark6.TabIndex = 10
Me.picMark6.TabStop = False
'
'picMark7
'
Me.picMark7.Location = New System.Drawing.Point(40, 408)
Me.picMark7.Name = "picMark7"
Me.picMark7.Size = New System.Drawing.Size(90, 90)
Me.picMark7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.picMark7.TabIndex = 11
Me.picMark7.TabStop = False
'
'picMark8
'
Me.picMark8.Location = New System.Drawing.Point(208, 408)
Me.picMark8.Name = "picMark8"
Me.picMark8.Size = New System.Drawing.Size(90, 90)
Me.picMark8.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.picMark8.TabIndex = 12
Me.picMark8.TabStop = False
'
'picMark9
'
Me.picMark9.Location = New System.Drawing.Point(384, 408)
Me.picMark9.Name = "picMark9"
Me.picMark9.Size = New System.Drawing.Size(90, 90)
Me.picMark9.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.picMark9.TabIndex = 13
Me.picMark9.TabStop = False
'
'btnReset
'
Me.btnReset.Location = New System.Drawing.Point(200, 560)
Me.btnReset.Name = "btnReset"
Me.btnReset.Size = New System.Drawing.Size(104, 23)
Me.btnReset.TabIndex = 14
Me.btnReset.Text = "&Reset Game"
'
'picEarth
'
Me.picEarth.Image = CType(resources.GetObject("picEarth.Image"), System.Drawing.Image)
Me.picEarth.Location = New System.Drawing.Point(56, 536)
Me.picEarth.Name = "picEarth"
Me.picEarth.Size = New System.Drawing.Size(60, 60)
Me.picEarth.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.picEarth.TabIndex = 15
Me.picEarth.TabStop = False
Me.picEarth.Visible = False
'
'picSun
'
Me.picSun.BackColor = System.Drawing.Color.Silver
Me.picSun.Image = CType(resources.GetObject("picSun.Image"), System.Drawing.Image)
Me.picSun.Location = New System.Drawing.Point(400, 536)
Me.picSun.Name = "picSun"
Me.picSun.Size = New System.Drawing.Size(60, 56)
Me.picSun.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.picSun.TabIndex = 16
Me.picSun.TabStop = False
Me.picSun.Visible = False
'
'picTurn
'
Me.picTurn.Location = New System.Drawing.Point(136, 8)
Me.picTurn.Name = "picTurn"
Me.picTurn.Size = New System.Drawing.Size(50, 50)
Me.picTurn.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.picTurn.TabIndex = 17
Me.picTurn.TabStop = False
'
'btnExit
'
Me.btnExit.Location = New System.Drawing.Point(392, 24)
Me.btnExit.Name = "btnExit"
Me.btnExit.TabIndex = 18
Me.btnExit.Text = "&Exit Game"
'
'picTie
'
Me.picTie.Image = CType(resources.GetObject("picTie.Image"), System.Drawing.Image)
Me.picTie.Location = New System.Drawing.Point(8, 8)
Me.picTie.Name = "picTie"
Me.picTie.Size = New System.Drawing.Size(50, 50)
Me.picTie.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.picTie.TabIndex = 19
Me.picTie.TabStop = False
Me.picTie.Visible = False
'
'MainMenu1
'
Me.MainMenu1.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.mnuFile, Me.mnuHelp})
'
'mnuFile
'
Me.mnuFile.Index = 0
Me.mnuFile.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.mnuFileNew, Me.mnuFileTotal, Me.mnuFileBar, Me.mnuFileExit})
Me.mnuFile.Text = "&File"
'
'mnuFileNew
'
Me.mnuFileNew.Index = 0
Me.mnuFileNew.Shortcut = System.Windows.Forms.Shortcut.CtrlN
Me.mnuFileNew.Text = "&New Game"
'
'mnuFileTotal
'
Me.mnuFileTotal.Index = 1
Me.mnuFileTotal.Shortcut = System.Windows.Forms.Shortcut.CtrlT
Me.mnuFileTotal.Text = "&Total game"
'
'mnuFileBar
'
Me.mnuFileBar.Index = 2
Me.mnuFileBar.Text = "-"
'
'mnuFileExit
'
Me.mnuFileExit.Index = 3
Me.mnuFileExit.Shortcut = System.Windows.Forms.Shortcut.CtrlE
Me.mnuFileExit.Text = "E&xit Game"
'
'mnuHelp
'
Me.mnuHelp.Index = 1
Me.mnuHelp.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.mnuHelpAbout})
Me.mnuHelp.Text = "&Help"
'
'mnuHelpAbout
'
Me.mnuHelpAbout.Index = 0
Me.mnuHelpAbout.Text = "&About Tic-Tac-Toe"
'
'frmTicTacToe
'
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(520, 613)
Me.Controls.Add(Me.picTie)
Me.Controls.Add(Me.btnExit)
Me.Controls.Add(Me.picTurn)
Me.Controls.Add(Me.picSun)
Me.Controls.Add(Me.picEarth)
Me.Controls.Add(Me.btnReset)
Me.Controls.Add(Me.picMark9)
Me.Controls.Add(Me.picMark8)
Me.Controls.Add(Me.picMark7)
Me.Controls.Add(Me.picMark6)
Me.Controls.Add(Me.picMark5)
Me.Controls.Add(Me.picMark4)
Me.Controls.Add(Me.picMark3)
Me.Controls.Add(Me.picMark2)
Me.Controls.Add(Me.picMark1)
Me.Controls.Add(Me.Label5)
Me.Controls.Add(Me.Label4)
Me.Controls.Add(Me.Label3)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.lblTurn)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Menu = Me.MainMenu1
Me.Name = "frmTicTacToe"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Tic - Tac - Toe Problem"
Me.ResumeLayout(False)

End Sub

#End Region
Dim EarthTurn As Boolean 'if True, it's Earth's turn
Dim CanClick As Boolean 'if Turn, can click grid
Dim NumberClicks As Integer 'Number of grid clicks
Dim Marker(9) As Integer 'what marker is in what location(1-Earth,2-Sun)
Private Sub btnReset_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnReset.Click
Dim I As Integer
picMark1.Image = Nothing
picMark2.Image = Nothing
picMark3.Image = Nothing
picMark4.Image = Nothing
picMark5.Image = Nothing
picMark6.Image = Nothing
picMark7.Image = Nothing
picMark8.Image = Nothing
picMark9.Image = Nothing
For I = 1 To 9
Marker(I) = 0
Next I
'make it earth's turn
picTurn.Image = picEarth.Image
lblTurn.Text = "Tutn"
EarthTurn = True
CanClick = True
NumberClicks = 0
End Sub
Private Sub frmTicTacToe_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
btnReset.PerformClick()
End Sub
Private Sub picMark_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles picMark1.Click, _
picMark2.Click, picMark3.Click, picMark4.Click, picMark5.Click, picMark6.Click, picMark7.Click, _
picMark8.Click, picMark9.Click
'Decide which picture was clicked(1-9)
Dim picClicked As PictureBox, Index As Integer
Dim Win As Boolean
picClicked = CType(sender, PictureBox)
'Index is last digit of control name
Index = CInt(Val(Mid(picClicked.Name, Len(picClicked.Name), 1)))
'if can't click or mark already there exit sub
If Not (CanClick) Or Marker(Index) <> 0 Then
Exit Sub
End If
'increment click then mark
NumberClicks = NumberClicks + 1
If EarthTurn Then
Marker(Index) = 1
picClicked.Image = picEarth.Image
Else : Marker(Index) = 2
picClicked.Image = picSun.Image
End If
Win = False
'check for win
If Marker(1) = Marker(Index) And Marker(2) = Marker(Index) And Marker(3) = Marker(Index) Then
'top horizontal win
Win = True
ElseIf Marker(4) = Marker(Index) And Marker(5) = Marker(Index) And Marker(6) = Marker(Index) Then
'middle horizontal win
Win = True
ElseIf Marker(7) = Marker(Index) And Marker(8) = Marker(Index) And Marker(9) = Marker(Index) Then
'botton horizontal win
Win = True
ElseIf Marker(1) = Marker(Index) And Marker(4) = Marker(Index) And Marker(7) = Marker(Index) Then
'left vertical win
Win = True
ElseIf Marker(2) = Marker(Index) And Marker(5) = Marker(Index) And Marker(8) = Marker(Index) Then
'middle vertical win
Win = True
ElseIf Marker(3) = Marker(Index) And Marker(6) = Marker(Index) And Marker(9) = Marker(Index) Then
'right vertical win
Win = True
ElseIf Marker(1) = Marker(Index) And Marker(5) = Marker(Index) And Marker(9) = Marker(Index) Then
'top,left down diagonal win
Win = True
ElseIf Marker(7) = Marker(Index) And Marker(5) = Marker(Index) And Marker(3) = Marker(Index) Then
'bottom, left up diagonal win
Win = True
End If
If Win Then
' there's a win
lblTurn.Text = "Win!!!"
CanClick = False
Else
'if we got this far, this was no win
If NumberClicks < 9 Then
EarthTurn = Not (EarthTurn)
If EarthTurn Then
picTurn.Image = picEarth.Image
Else
picTurn.Image = picSun.Image
End If
Else
'If there's nine clicks and no win, it's a tie
picTurn.Image = picTie.Image
lblTurn.Text = "A Tie ...."
CanClick = False
End If
End If
End Sub
Private Sub btnExit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnExit.Click
Dim response As DialogResult
response = MessageBox.Show("Are you sure you want to exit ?", "Exit Game", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
If response = DialogResult.Yes Then
Me.Close()
Else : Exit Sub
End If
End Sub
Private Sub mnuFileNew_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles mnuFileNew.Click
Dim I As Integer
Dim Message As String
Dim Response As DialogResult
Response = MessageBox.Show("Are you sure you want to start new game ?", "Exit Game", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
If Response = DialogResult.Yes Then
picMark1.Image = Nothing
picMark2.Image = Nothing
picMark3.Image = Nothing
picMark4.Image = Nothing
picMark5.Image = Nothing
picMark6.Image = Nothing
picMark7.Image = Nothing
picMark8.Image = Nothing
picMark9.Image = Nothing
For I = 1 To 9
Marker(I) = 0
Next I
Else
Exit Sub
End If
'make it earth's turn
picTurn.Image = picEarth.Image
lblTurn.Text = "Tutn"
EarthTurn = True
CanClick = True
NumberClicks = 0
End Sub
Private Sub mnuHelpAbout_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles mnuHelpAbout.Click
Dim Myform As New frmAbout
Myform.Show()
End Sub
Private Sub mnuFileTotal_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles mnuFileTotal.Click
Static TGame As Integer = 1
Dim Win As Boolean
Dim Message As String
If Win = True Or Win = False Then
TGame += 1
End If
Message = "Total Game : - " + Str(TGame) + ControlChars.Cr
MessageBox.Show(Message, "Statistics", MessageBoxButtons.OK, MessageBoxIcon.Information)
End Sub
End Class
QuestionCan we convert Visual Studio VB to Visual Studio C++? Pin
ATC19-Oct-07 10:11
ATC19-Oct-07 10:11 
AnswerRe: Can we convert Visual Studio VB to Visual Studio C++? Pin
Dave Doknjas19-Oct-07 14:24
Dave Doknjas19-Oct-07 14:24 
QuestionRe: Can we convert Visual Studio VB to Visual Studio C++? Pin
Hamid_RT21-Oct-07 4:59
Hamid_RT21-Oct-07 4:59 
QuestionWCF Problem Pin
RobBlu19-Oct-07 8:47
RobBlu19-Oct-07 8:47 
AnswerSorry, I forgot the app.config Pin
RobBlu19-Oct-07 8:53
RobBlu19-Oct-07 8:53 
Questionproblem in deployment Pin
Shuaib wasif khan19-Oct-07 8:04
Shuaib wasif khan19-Oct-07 8:04 
AnswerRe: problem in deployment Pin
svanwass19-Oct-07 9:16
svanwass19-Oct-07 9:16 
AnswerRe: problem in deployment Pin
Scott Dorman19-Oct-07 9:23
professionalScott Dorman19-Oct-07 9:23 
GeneralRe: problem in deployment Pin
svanwass19-Oct-07 9:26
svanwass19-Oct-07 9:26 
QuestionVB.NET 2005 ODBCCommand Pin
rahvyn619-Oct-07 5:52
rahvyn619-Oct-07 5:52 
AnswerRe: VB.NET 2005 ODBCCommand Pin
Kschuler19-Oct-07 8:22
Kschuler19-Oct-07 8:22 
GeneralRe: VB.NET 2005 ODBCCommand Pin
rahvyn619-Oct-07 8:39
rahvyn619-Oct-07 8:39 
AnswerRe: Help usinf hiddenfield control and dropdownlist Pin
nlarson1119-Oct-07 6:38
nlarson1119-Oct-07 6:38 
QuestionReportviewer does not print landscape Pin
dptalt19-Oct-07 5:34
dptalt19-Oct-07 5:34 
QuestionFTP folderlist [modified] Pin
Tom Deketelaere19-Oct-07 3:53
professionalTom Deketelaere19-Oct-07 3:53 
QuestionOnly download if newer version available? Pin
Brad^19-Oct-07 3:41
Brad^19-Oct-07 3:41 
AnswerRe: Only download if newer version available? Pin
svanwass19-Oct-07 9:21
svanwass19-Oct-07 9:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.