VS 2005 GroupBox Array - View All Of The Frames At One Time?
Oct 9, 2009
I'm working with a vb.net project that was converted to vb.net from vb6. One form has a groupbox array. So I see one frame, but there are several others behind it that I can only see if I drag the contents of the current frame to the side. Is there any way to view all of the frames at one time? I don't know how to edit or add something new to this form.
View 4 Replies
ADVERTISEMENT
Feb 13, 2012
On VB.NET 2005 and 2008, if you were debugging you could roll over the variable you set as an array and a little "+" would pop up next to the array variable and you could click it and see all of the data loaded into the array.
View 3 Replies
Feb 9, 2012
So i know this is more Math related but it would make life so much easier. What i want to do is enter 2 times into 2 text boxes and then subtract them from eachother to find out the hours inbetween as a decimal.
View 8 Replies
May 28, 2011
converting the number of frames (in a video) to a number/time format. For instance, say a video has 110,212 frames at 23.976 fps, it works out to 01:16:36 (hh:mm:ss) with 18 frames remaining. I would like to format the result in a Textbox like the following:
[Code]...
View 3 Replies
Oct 2, 2011
I added a groupbox around some controls and now want to redo my design When i try to delete the groupbox VB wants to delete all the controls within it
View 3 Replies
May 4, 2010
in vb.net windows application, i have two radio-button in a groupbox,
if i select radiobutton1 then the value=1
if select radiobutton2 then the value=2
how can i do?
View 5 Replies
Jul 28, 2010
i have a sort of problem when i try to add some linklabels in my groupbox. I used this
Me.Controls.Add(Groupbox3)
Groupbox3.Controls.Add(FlowLayoutPanel)
I can only add 4 linklabels no matter how big is the groupbox, i tried autoscroll but nothing. How can i do to store minimum 20 linklabels in a groupbox? Here is the whole code i used:
Imports System.Net
Imports DevComponents.DotNetBar.Controls
Imports System.Windows.Forms[code]....
Is there any way, maybe with a specific reference to put a control that records what plays wmp activex and to save somewhere on your computer?
View 2 Replies
Apr 28, 2011
is there any free panel or frame or groupbox control that has a header where i can type text, maybe with gradient?
View 5 Replies
Mar 20, 2009
i want to make the Grid view Button(Time In) invisible until the User press Time Out Button. Once the user press the Time Out Button,Time in Button must be shown
View 2 Replies
Jun 22, 2010
Here using VB .Net 2008. I seem to be having trouble getting group boxes to appear when I click a radio button.
For example:
CODE:
This indeed brings up the first radio button however I have other groupboxes underneath which with the same code will not appear when the radio button is checked.
Eg:
CODE:
The second groupbox does not appear and is directly behind the first groupbox. The Top code doesn't seem to be working either.
View 5 Replies
Apr 15, 2012
I am pulling three coloums of data from a SQL view into my data drid Day,TimeIn,TimeoutI want to colour my datagrid rows red if timeout is null and green if both the timein, timeout have data in them.[code]
View 2 Replies
Jan 23, 2009
how can i edit the list view in run time
View 1 Replies
Jun 3, 2011
I am doing a project for college where I have a booking system. The people book for a time slot and I would like to work out how to have a break down of time slots say for one hour periods throughout the day. Something similar to the bottom half of this picture [URL]. How would I go about something like this in VB.NET?
View 10 Replies
Aug 18, 2011
Its working for only single row.I got the Error Message is:
"Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index"
Private Sub ViewButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ViewButton.Click
con = New SqlConnection(Constr)
cmdstr = "Select * From Mcdaily where Mcno='" & McnoCombo.Text & "' and Day(Edate)=" & Dtlog.Value.Day & " and Month(Edate)=" & Dtlog.Value.Month & ""
[Code] .....
View 2 Replies
Jun 14, 2010
I would like to integrate a day or week view to a time recording application. This would enable users to add preset activities to their calendar and edit those actiivities to reflect the time they've spent on them.A perfect example would be the excellent work from April16 here . Unfortunately, my company will not pay the price April16 is asking for this component. No need to post comments on that...The time recording application already exists but was recording activities in a different manner, which enabled me to use DataGridView with activities and percentage of time spent on them. I would like to make it more user-firendly.
View 1 Replies
Aug 3, 2011
I am using asp.net 4, .net 4 and masterpages. I added in the following code to my child page
Private Sub FoodChain_Init(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Init
MyBase.OnInit(e)
PopulateDropdowns()
[code].....
View 1 Replies
Sep 1, 2011
I'm using VB 2010 Express. I'd like to ask about tree nodes - in my application, the user can change the nodes and add more. When I leave the application, I would like to return and for the new nodes to still be there. I've tried My.Settings, but I've decided there must be another way to do it in a file. For each node, I need to save the key and text, and reload it next time.
View 4 Replies
Apr 26, 2009
I have a table of 51 data points all numbers between 0 and 8000, i have stored the data in an array of ushors's, and on my form i have 10 numerical text boxes, So that the user can change the values in the table every 5th value. Using the value changed event the program then re-calculates the values in-between.
What i would like to do is show the table in a data gridview and allow the user to change the values in the array using the datagrid view, i know how to create a table but not how to link the table, so that it can change the values contained in the array.
Below is the code i am using to create the table:-
Option Strict On
Public Class FrmViewTable
Private BindingSource As New System.Windows.Forms.BindingSource 'Create a binding source for the tabel & dataview
[Code].....
View 4 Replies
Jan 5, 2010
I want to create a reusable user control which contains a date time picker in asp.net. Need to add this user control in a grid view as column.While clicking the column,date time picker has to be displayed.Which is the suitable method,Creating the component or creating the user control.Also want to know,How to add this component in to the toolbox?
View 2 Replies
Feb 20, 2012
read data from text file , 3 data types saved on the file, "location", "time","sighting" eed to extract all data from file and save on a 2d array and display on a datagrid view.ata sorted by ascending order of time.
View 14 Replies
Nov 22, 2011
i try to do make a view in sql server using this code from access:[code].....how can i convert it to MSSQL?
View 1 Replies
Aug 31, 2011
I would like to implement a code which executes what a user selects from the combobox and display related data from the access database on the datagrid.I have managed to connect to my database.How do I connect the combo box action to display information on the datagrid?elow is a code that am using to read the contents of my table from the database and display it on the datagrid.
cnString = "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Data Source=C:UsersHomeDocumentsIADCS PROJECTS 2011SAD PROJECT 2011StockControl.mdb"
sqlQRY = "SELECT * FROM Category"
[code].....
View 4 Replies
Jan 9, 2011
While using data grid view i bound it to my table using the following code.
HTML
EntCommand = New SqlClient.SqlCommand("Select SlNo,EntNo,ItemCode,UnitCode,Rate,Qty,Amount from Pur where Entno = " & Val(TextBox1.Text), DbCon)
RsEnt.SelectCommand = EntCommand
[code]....
It works good. But how to save data to my datable using datagrid view using bounding option.I have written the code as below but it doesnot work
EntCommand = New SqlClient.SqlCommand("Select * Pur where entno= " & Val(TextBox1.Text), DbCon)
RsEnt.UpdateCommand = EntCommand
Dim cmd As New SqlClient.SqlCommandBuilder
[code]....
View 1 Replies
Dec 18, 2010
"I've wrote a code that accesses data from MS SQL server in DATAGRIDVIEW in VB.NET.the problem is whenever i save the changes back to the database, changes are not reflected back
[Code]...
View 7 Replies
Mar 27, 2009
I've used programs before which have a treeview type panel which has a text box... what is this and how can I do it?
View 4 Replies
Feb 26, 2010
i use this code to insert image in a database and its work
[Code]...
View 2 Replies
Aug 11, 2010
Im creating a program that shows the CPU usage (already have the code for the CPU usage) frames per second etc, what im needing is the code snippet fordisplayinghe current FPS in a list box, but i also want the FPS to automatically refresh once a second
View 2 Replies
Dec 26, 2009
I am using Datagrid View in vb.net 2005 i have loaded data from db to the datagridview in all cells. i have concatenate three strings in a cell from db. i want that after first string the second string goes to the new line in the cell.[code]...
View 1 Replies
Oct 2, 2005
Ive decided to move from VB6 programming and Im not really sure where to go..Ive got a copy of VB .Net 2003, and Ive also downloaded VB 2005 Express edition, with a possible view to getting hold of Visual Studio 2005 to program VB 2005. The problem (and confusion) that I have is - what is the difference, and which should I turn to?Am I right in assuming that VB.NET 2003 and VB 2005 are different, or am I ok to learn .NET 2003 until the 2005 version comes out?I know this might seem like a dumb question, but I want to move onwards and upwards and am a little confused, as I dont want to concentrate on 2003 if I'm going to be learning an outdated language in the next couple of years.
View 8 Replies
May 28, 2009
I'm working with a DataGridView. The DataSource for the DataGridView is set to a DataTable that I've populated with the results of a SQL query.
Then, I add an extra column to the DataGridView, a DataGridViewCheckBoxColumn. This allows the user to select a number of records in the datatable in order to save out selected files, represented by the rows of the datatable/DataGridView.
I have buttons that will programmatically check/uncheck all of these CheckBoxes, as there are frequently several hundred rows in the DataGridView. The user can also check/uncheck any number manually.[CODE..]
View 8 Replies