Click here to Skip to main content
15,887,214 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: How does StringBuilder Work? Pin
Vasudevan Deepak Kumar6-Mar-06 22:24
Vasudevan Deepak Kumar6-Mar-06 22:24 
QuestionUse sytem icons Pin
Viktor Nilsson4-Mar-06 1:49
Viktor Nilsson4-Mar-06 1:49 
AnswerRe: Reading data samples from sound card Pin
Dan Neely3-Mar-06 6:42
Dan Neely3-Mar-06 6:42 
QuestionActive X in a Smart Client (is it Possible) Pin
mark_e_mark3-Mar-06 5:15
mark_e_mark3-Mar-06 5:15 
AnswerRe: Active X in a Smart Client (is it Possible) Pin
Vasudevan Deepak Kumar6-Mar-06 0:41
Vasudevan Deepak Kumar6-Mar-06 0:41 
Questionauto update a windows service Pin
mweber26@hotmail.com3-Mar-06 4:51
mweber26@hotmail.com3-Mar-06 4:51 
AnswerRe: auto update a windows service Pin
Dave Kreskowiak3-Mar-06 13:46
mveDave Kreskowiak3-Mar-06 13:46 
Questionpocket pc application Pin
bhavz693-Mar-06 4:01
bhavz693-Mar-06 4:01 
hi im having a problem with my application..
basically i want to store values of my textboxes when i click on the add button..at the moment
what i have is when i load the application the below code is generated.....



Private Function LoadProject(ByVal ProjectID As Integer) As Boolean
' Simulate having retrieved project data
' from a database. Here, we'll use our
' Project and Task data structures to
' hold the data.
With theProject
.strProjNo = 1
.dateProjStart = DateTime.Today.AddDays(-100)
.dateProjTime = DateTime.Today.AddDays(100)
End With




theTasks.Add(New Task(0, "Go To Computer Graphics Lecture", _
DateTime.Today.AddDays(-17), _
DateTime.Today.AddDays(22), _
"make sure i print off lecture slides before lecture starts"))
theTasks.Add(New Task(1, "Go to Lab ", _
DateTime.Today.AddDays(-11), _
DateTime.Today.AddDays(19), _
"complete lab six and get it signed"))
theTasks.Add(New Task(2, "see tutor ", _
DateTime.Today.AddDays(-11), _
DateTime.Today.AddDays(19), _
"complete lab six and get it signed"))

Return True
End Function


.....and when i add a new task the new values are stored but only temporarly..i need it to store forever..


Private Sub btnAddTask_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAddTask.Click
' Unbind the Tasks array list from
' the dropdown ComboBox.
cboxTasks.DataSource = Nothing


' Add the task to the Tasks array list.
theTasks.Add(New Task(txtTaskNo.Text, txtTaskName.Text, _
txtTaskStart.Text, txtTimeStart.Text, _
txtTaskActual.Text))
With cboxTasks
.Items.Add( _
CType( _
theTasks(theTasks.Count - 1), Task).strTaskName)
.SelectedIndex = theTasks.Count - 1
End With
' Cleanup the form and re-select the old task.
AfterNewTaskCleanup(ixTaskPrev)
End Sub



.....i want to use xml as my datastorage but dnt no how to implement this..would be grateful if any 1 could help
p.s. i am using vb.net 2003 - smart device application for pocket pc

thanks
QuestionNet 2.0 and COM Interop (Winword) Pin
gill3-Mar-06 3:28
gill3-Mar-06 3:28 
AnswerRe: Net 2.0 and COM Interop (Winword) Pin
Douglas Troy3-Mar-06 6:20
Douglas Troy3-Mar-06 6:20 
QuestionIncorporating several 3rd party installation programs into setup project? Pin
mike973052-Mar-06 11:25
mike973052-Mar-06 11:25 
QuestionGraphics update bottleneck Pin
magja2-Mar-06 3:51
magja2-Mar-06 3:51 
AnswerRe: Graphics update bottleneck Pin
Dave Kreskowiak2-Mar-06 8:09
mveDave Kreskowiak2-Mar-06 8:09 
GeneralRe: Graphics update bottleneck Pin
magja2-Mar-06 22:08
magja2-Mar-06 22:08 
GeneralRe: Graphics update bottleneck Pin
Dave Kreskowiak3-Mar-06 1:49
mveDave Kreskowiak3-Mar-06 1:49 
QuestionHow to write C# code in a vb.net form Pin
Maher Abu Zer1-Mar-06 23:51
professionalMaher Abu Zer1-Mar-06 23:51 
AnswerRe: How to write C# code in a vb.net form Pin
darkelv2-Mar-06 0:55
darkelv2-Mar-06 0:55 
AnswerRe: How to write C# code in a vb.net form Pin
Vasudevan Deepak Kumar2-Mar-06 1:38
Vasudevan Deepak Kumar2-Mar-06 1:38 
QuestionHow to Get Client IP address using TcpClient? Pin
Maher Abu Zer1-Mar-06 20:24
professionalMaher Abu Zer1-Mar-06 20:24 
AnswerRe: How to Get Client IP address using TcpClient? Pin
Nicholas Butler1-Mar-06 21:00
sitebuilderNicholas Butler1-Mar-06 21:00 
GeneralRe: How to Get Client IP address using TcpClient? Pin
Maher Abu Zer1-Mar-06 21:50
professionalMaher Abu Zer1-Mar-06 21:50 
AnswerRe: How to Get Client IP address using TcpClient? Pin
Nicholas Butler1-Mar-06 22:16
sitebuilderNicholas Butler1-Mar-06 22:16 
GeneralRe: How to Get Client IP address using TcpClient? Pin
Maher Abu Zer1-Mar-06 22:29
professionalMaher Abu Zer1-Mar-06 22:29 
AnswerRe: How to Get Client IP address using TcpClient? Pin
Nicholas Butler1-Mar-06 22:39
sitebuilderNicholas Butler1-Mar-06 22:39 
GeneralRe: How to Get Client IP address using TcpClient? Pin
Maher Abu Zer1-Mar-06 22:47
professionalMaher Abu Zer1-Mar-06 22:47 

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.