Make Objects From The ToolBox Using Code Instead Of Changing Existing Objects Invisible Then Visible Later?
Dec 5, 2011make objects from the ToolBox using code instead of changing existing objects invisible then visible later?
View 7 Repliesmake objects from the ToolBox using code instead of changing existing objects invisible then visible later?
View 7 RepliesI have this code for hiding a table and a cell in aspx, backend vb.net
Code:
For Each row As HtmlTableRow In tab_a1.Rows
If row.ID = "a1" Then
For Each cell As HtmlTableCell In row.Cells
cell.Visible = (cell.ID = "a1")
[Code] .....
Now instead of tables I'm using tags. How can I use similar code and make div's visible and invisible?
In visual basic.net I have been playing around with groupboxes and things of that nature, is there any way to group items into a box, say, buttons, and use the groupbox as a container to move / hold all of its contents while not being visible in any way? (no decoration perhaps?)
I've tried making the groupbox invisible but that makes all the items within the groupbox invisible as well.
I want my form to be invisible but I want the buttons and list-box to still be visible. So basicaly I want a bunch of floating buttons and listboxes on my screen.
View 2 Repliesi am familiar with Vb.net, asp.net, html and javascript. look this website: [URL] now go to the search directory: near to search button there is "Advanced Search" when u click it u will see a page that was hiden, again when u click the "Advanced Search" it will be invisible. i want to develop that portion of application on my own website. so how can do that? should i develop it using asp.net(vb.net) or javascript?
View 1 RepliesStill using VS 2005. My concept is to use the same form space to display different "pages", like a "wizard" where you click the [Next] button, and the current UI disappears and a new UI appears. I want to "turn off" multiple controls and "turn on" multiple other controls. Example code: -
Private Sub
Button4_Click(ByVal
sender
[Code].....
In form frmAddPlayers I declare and create an array of pictureboxes in the Load event using the code:
Dim
pbxPlayerJoined(7) As
PictureBox
[code]....
In the watch window the value of the pictureboxes is System.Windows.Forms.PictureBox. Later in the load event I start a background worker in form sfrmUSBDevice using the code:
sfrmUSBDevice.sReadWriteThread.RunWorkerAsync()
The background worker waits for user input and then calls a subroutine from form frmAddPlayers. The subroutine changes the image in the picturebox to indicate that the user input has taken place. However when the debugger returns from sfrmUSBDevice to frmAddPlayers the watch window shows that all of the pictureboxes have a value of nothing. Then when I try to change the image of the picturebox I get an "Object reference not set to an instance of an object" exception. It seems like when the debugger goes to the sfrmUSBDevice form and comes back to frmAddPlayers the objects on frmAddPlayers have lost their information.
I don't know if this is doable, maybe with Linq, but I have a List(Of MyType):
Public Class MyType
Property key As Char
Property description As String
End Class
And I want to create a Dictionary(Of Char, MyType) using the key field as the dictionary keys and the values in the List as the dictionary values, with something like:
New Dictionary(Of Char, MyType)(??)
Even if this is doable, internally it will loop through all the List items, I guess?
I am getting this error, Not sure why it is happening "Error The SqlParameterCollection only accepts non-null SqlParameter type objects, not Int32 objects."I have tried with all sorts of possibilties, now try to enter default data as dummy data,
Using connection As New SqlConnection
connection.ConnectionString = ConfigurationManager.ConnectionStrings("DentalDeviceConnectionString").ConnectionString
connection.Open()[code].....
I have a program like this.
Module Module1
Public Class Mstr
Public Property Prop1 As String
Public Property Prop2 As String[code]....
But it is not working as I expect it to. You can see it from.The DtlsB properties of all three DtlsA objects are having values from last iteration.
I want to let the user input objects to a richtextbox 1 object on each line, and somehow use Random.Next to select pseudorandomly a few objects, the number 'few' inputted in a textbox.
View 9 RepliesPrivate Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Using conn As New SqlConnection("Database=Clinic_Management_System;Data Source=.SQLExpress;Integrated Security=True;AttachDBFilename=|DataDirectory|Clinic Management System.mdf")
Dim cmdRecord As SqlCommand
[code]....
I have a user control that inherits the FW ListView and I need to dispose of two objects when the form's disposing of it's objects. Here's what I've concluded already, am I on the right track?
[Code]...
I am trying to change an objects location programmatically. I have the line: Trackbar1.Location.Y=100 but recieve the error: Expression is a value and therfore cannot be the target of an assignment. Does anyone know how to get around this?
View 2 RepliesCurrently my program randomly removes words from a set of text and inserts textboxes below the text. The user can then enter his/her answers in the new textboxes. What I would like to do is set the program so the user can have two choices one being Easy and other being Advanced. Then when the user hits either button it brings up everything that is currently on the form. I'd prefer to do this without having to use MDI forms. I've had a hard time using the MDI forms and therefore would like to avoid using them. They way I was thinking this could work is all objects would remain invisible except for the 2 buttons and then when you hit one of them they disappear and everything else appears.
View 1 RepliesChanging datatypes of properties of serialized objects?
View 1 Replieslong story short, I have created a ListView type control, using UserControls for the parent control and the ListViewItems. Most the of the control is written and works fine, right up to the point where I tried to replicate the 'Control.SelectedItems(0).Index' property and the 'SelectedIndexChanged' event.
Each child object knows its index value, and could pass this value via the SelectedIndexChanged event (assuming this is how it works in a normal ListView control -- user clicks on an item, and that item fires an event updating the selected index value in the parent object).
How does the child object raise an event in the parent object? I have a feeling this could be done with Delegates, but I'm still learning about their usage.
getting the following error Unable to cast object of type 'System.Object[]' to type 'OrderService.webdirect_WebLinesRow[]'. On the line
webdirect(web_companyID, web_locationCode, web_customerNumber, web_orderNumber, web_orderReference, web_orderDate, webLinesArray.ToArray(), o_Company, o_LocationCode, o_CustomerNumber, o_OrderNumber, o_OrderStatus, o_OrdDescrip, webRespArray)
I created the webLinesArray.ToArray() array as such
Dim webLinesArray As New ArrayList()
Am I missing an additional cast or something ?
I want to compare two objects to check if all the properites of both the object have same value or not. for this i need to use the reflection to enumarate through all the properties of an object and check the value of the property. To try the code just i have written a Employee Class having Two Properties EmployeeNo and EmployeeName. I am creating an object of the Employee class and need to write a function that can list the values of all the properties in the class.
[Code]...
I am tring to bind a class to a form where the class contains other class variables. For example:
Class Character
Private _name as String
Property Name as String
[code]......
I have a nested class, let's call it class1 and it has class2 inside it; VB.Net eg:[code]
1) How can I define X number of Class2 objects[let's call it: Node(x) array]** with NEW() subroutine called?' this raises error: dim cls2(n) as new class2 end sub.
2) How can I return actual number of Node() array? [code]Outside my class in main project I define cls1 object:[code]Now an array of class2 is created inside cls1.
3) Now,How can I access All of them[node(x) array which is created inside cls1] with all properties and methods available?
I remember I wrote a ProcessManager class with this functionality in .net 2003, nearly 4 years age, I don't have the code now.
Dont even know how to word this, reason I'm having so much trouble finding out the answer in help.But, basicly I'm trying to get data from many different text boxes named similar from my form, example:[code]where i would count up in a for and next statment from like 1 to what ever.
View 17 RepliesI want to make pictureboxes move from the top of the screen to the bottom of the screen (easy) when they reach the bottom I want them to cease to exist (do-able). But i want to create new ones that keep coming from the top. create an endless amount of pictureboxes while running the program?
View 5 RepliesI usually used dom object from mshtml library for stuff manipulation when I use webbrowser control.How would I do the same for webclient control. Can I? Can we create a dom object from a raw html string?
View 1 RepliesI made a program to generate random numbers and the result will be in two boxes. The first box contains 16 numbers and the second one contains 32 numbers. I need to add a diagram show the relationship between these numbers. The diagram must contain ten fixed objects numbered from 0 to 9 and the code should start reading from the result box from left to right. for example: we have a result [1502219785642556], so object number one its color will be changed to be known that it is the first number then the second number is five so there will be an arrow goes from object number 1 to object number 5, then arrow from 5 to 0, arrow from 0 to 2, from 2 to 2 cycle arrow.It better to designee the objects in three rows and columns, and each arrow has a number in sequence.
View 3 RepliesI want to copy the different objects of a tabpage into another tabpage while running the application(using a button click), but that those objectshave the same code as their references, so they work exactly as their references.
View 1 RepliesHow can I create and manipulate Objects on form with my vb code?By that i don't mean toggling the visibility.
View 6 RepliesHow can I make an array of objects in VB.net. Here is the requirement. Basically I have a class named hotel. I need to dynamically add customers to the hotel class using the Customer class. So basically if in the Hotel class I can have an array of Customer objects that would be great. How can I do this in VB .net ?
Public Class Hotel
' I need an array of Customer objects. objCustomers
End Class
[Code]......
I'm struggling with unit testing in my website.So far I have the NUnit framework imported with;[code]How do I call in objects from the other class with all my code to test?If anyone could give me an example of how to test textbox validation,
View 1 RepliesI've written a for loop to generate several new text boxes and numericUpDowns when the application is run.
The text boxes / numericUpDowns are generated with a 2-dimensional array. My question is: How do I handle when the text boxes / numericUpDowns are modified?
If you would like the code, just request it and I'll add it here.