all groups > vb.net controls > october 2004 > threads for october 22 - 28, 2004
Filter by week: 1 2 3 4 5
Can't instantiate a user defined control
Posted by Ralph Koettlitz at 10/28/2004 8:20:37 PM
I have the following code:
============================
01 public class A
02 inherits System.Windows.Forms.TextBox
03
04 private mtimer
05
06 public sub new()
07 mtimer = new System.Timers.timer(1000)
08 AddHandler mtimer.Elapsed, AddressOf Me.OnTimerElapsed
09 end sub
10
11 ...
1... more >>
Getting dataset row from datagrid
Posted by Ron L at 10/28/2004 11:20:04 AM
I have a grid that is the list portion of a list & detail set. I am
catching the SelectedIndexChanged event and using
dslistdata.Tables(0).Rows(grdListDisplay.CurrentRowIndex) to get the data
that fills the grid's row from the underlying dataset. This works fine if
the grid hasn't been sor... more >>
Sort error on datagrid column name
Posted by nate axtell at 10/28/2004 7:30:29 AM
In VB .NET I load the contents of an Excel or comma seperated values file
into a dataGrid (via a datatable). One of the columns has a comma in the
name of the column. So for the comma separated values files I put double
quotes are the column name. What I see is that the name ends up getting... more >>
Threading and updating form question.
Posted by Roger at 10/27/2004 3:03:56 PM
I have a function that is currently wrapped up in a Class so I can pass a
variable to it.
This function is going to be threaded out and I would like the class
function to be able to update a control on my form. (Treeview).
Is this possible and how do I do it?
Here is a simplisitc overv... more >>
Multiple Transparent Controls
Posted by Lee at 10/27/2004 3:20:43 AM
I'm trying to make an interface where the main form is an ellipse shape.
When the user clicks a particular area, another non-rectangular "panel"
slides out from behind the main ellipse (similar to how some of WinAmp's
skinned modes do for control panels). I'm using a Form as a "canvas" for
... more >>
Grid Control Suggestions
Posted by ML at 10/25/2004 7:19:46 PM
Been using the FlexGrid from ComponentOne from the VB Resource Kit. I also
use the Infragistics grid for another project. Basically I 'd like some
feedback on what others use and find decent.
Like to find something that has some basic built in support for editors,
such as a numeric input con... more >>
Problem using a custom control
Posted by Richard L Rosenheim at 10/25/2004 6:04:43 PM
Okay, I haven't hit it problem before. I'm writing a program, and as part
of the solution, I've created an user control. I dragged some labels,
progress bars and a button onto the control's form. No code yet. If the
control hasn't be placed on the program's form, I'm able to compile the
proj... more >>
PDF Viewer for VB.net
Posted by Brij Singh at 10/25/2004 3:45:12 PM
Can any one please suggest some control for PDF File to view in VB.net
We have pdf files and we need to view it in the viewer but i dont want to
use adobe acrobat viewer
as we dont want to diplay the default toolbar and menu and also it seemed
little slower too.
Thanks,
Brij
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Text not showing in list box
Posted by Steve Lloyd at 10/25/2004 10:27:32 AM
Hi,
I am having a nightmare with a list box, when I load my form the text in the
list box does not display but i can select the blank line and they work
fine. After a couple of operations the text magically returns but i cannot
get it to display to begin with. I am using VS.Net 2002 and i... more >>
Combo Box Problem
Posted by trialproduct2004 NO[at]SPAM yahoo.com at 10/24/2004 9:25:02 PM
Hi all
I am using combobox.
I want to disable scrollable event of combobox( same as address bar of
windows explorer).
Does any one know how to disable scrollable event of combo.
Please help me.
Thanks in advance.... more >>
Improved Tab Control Suggestion
Posted by ML at 10/24/2004 2:14:48 PM
Does anyone know of a good replacement for the standard VB.NET tab control?
Looking for something with a better look to it, something similar to the tab
in OneNote.
Free is possible but if no free options then something at a decent price
that works well.
... more >>
Listview having checkbox as a subitem
Posted by Mukund Patel at 10/22/2004 5:33:43 PM
How to add checkbox in Listview as a subitem in vb.net. The CheckBoxes
property of ListView add the checkbox as item but I need the checkboes as a
subitem.
--
Mukund Patel
Sr. Software Engineer
IntraAction Software
Ahmedabad, India
PH: 9426501727
... more >>
Termination of a file
Posted by Tor Inge Rislaa at 10/22/2004 2:23:41 PM
Hi I am using the code below to execute a file in the program corresponding
to its filetype. Is there a way that I can control the termination of a file
and it's corresponding program. E.g. if I open the file "c:\data\test.txt"
it will open in the notepad. On my command from VB.NET I want to clos... more >>
vbc.exe
Posted by Ernest Morariu at 10/22/2004 11:16:19 AM
Hi !
I try to create a batch file to automate the compilation of my project.
I have some problems with the "/resource: <resources_list>" option of the vb
compiler. It seems that it does not accept more than two resources.
Specifying more than two resources as <resources_list> I get the follo... more >>
|