4
Answers

Networkable VB.Net Application?

Skip

Skip

19y
3.7k
1

Hi,  I am not a developer by any stretch.  I come from a web-designer background.  But I am trying to expand into vb.net and having a great time learning. 

I need some high level, general advice on building a little application with which I could show the status of several chairs at a dentist office.  This application's interface is simply a form consisting of several groups of radio buttons to show if a particular dental operatory is "Ready", "Needs Prep" or is "Busy". 

The idea is to convey to everyone in the office (on the LAN) what the status of the operatories are at a quick glance.


Operatory Status Board
Ready Prep Busy
Operatory 1
Operatory 2
Operatory 3



My question is how do I make such an application available over the LAN so everyone in the dentist office can view it and use it?  (I am sure that there are many facets to this, but I'm really just looking for someone to point me in the right direction.)

What classes of objects should I familiarize myself with? 
Are there any good tutorials available for this type of project? 
What is the terminology to describe such a project? (So I can search for help using appropriate and effective search terms)

Any help is welcome.

Answers (4)
0
Andrew Wooster

Andrew Wooster

NA 75 0 19y
The windows form has a list of controls so the following code will work but will be slower as it will have to loop through every contol on the form: for each ctrl as Object in Controls if TypeOf ctrl is TextBox then DirectCast(ctrl, TextBox).Text = "" end if next The more efficient way would be to store all your dynamically created textboxes in an arraylist as previously specified. This will force you to create them programmatically though.
0
mibuyt

mibuyt

NA 512 0 19y
Hi, Haha. Well i just add on your point of view on control array. At first, i also believe that vb.net has no possible on control array. But it still can be done on the hard way :( Cheers.
0
dofmcp

dofmcp

NA 17 0 19y
Dear chuawenching whether u r agree with me or not but fortunatly I did it. thanx for giving such valuable comment and alternative code. Hariom..(A word to wish)
0
mibuyt

mibuyt

NA 512 0 19y
Hi, I don't agree with you on this. There is no concept of Control Array. This is how you can achieve Control Array ... Dim textboxes() as System.Windows.Forms.TextBox ReDim textboxes(count - 1) For i = 0 To textboxes.GetUpperBound textboxes(i) = New System.Windows.Forms.TextBox textboxes(i).Clear() Next You can figure it out more how it can be applied in your scenario. Cheers.
0
MythicalMe

MythicalMe

NA 245 0 20y
The only reason that I suggested an arraylist is that the control container for the form may have additional textbox controls. Using the arraylist you only address those controls which are part of the group. You could have done the same thing with a groupbox too.
0
dofmcp

dofmcp

NA 17 0 20y
I just used the following code and it is working perfactly. ' Place this code in Button Click Event dim i as control For Each i in Controls If TypeOf i is TextBox then i=" " End If Next
0
dofmcp

dofmcp

NA 17 0 20y
Thanx for reply but Can't I use the ForEach loop with TypeOf ObjectControl statement to do the same job. If yes, then how ?
0
MythicalMe

MythicalMe

NA 245 0 20y
If I understand your problem: You want to use an array to empty a set of textbox controls when a button control is pressed. Here is some code to consider then: private txtboxArray as ArrayList 'Place the folowing in the form load event dim i as integer for i = 0 to 9 dim txtBox as New TextBox txtBox.Name = "txt" & cstr(i) txtBox.Location = new Point(10, i * 20) ' Add whatever additional properties here me.Controls.Add(txtBox) txtboxArray.Add(txtBox) next 'Place this in your button click event dim txtBox as TextBox for each txtBox in txtboxArray txtBox.Text = String.Empty next