all groups > vb.net controls > june 2006 > threads for june 22 - 28, 2006
Filter by week: 1 2 3 4 5
Icons for controls
Posted by OpticTygre at 6/28/2006 6:41:14 PM
I have a control I built, for which I would like to add a tool bar icon, but
for some reason, it's not working correctly.
There is no default namespace (I removed it from the properies page of the
project), and the icon file has been included in the project and it's build
option is set to "... more >>
Listbox Selected Item?
Posted by Joe at 6/27/2006 1:22:24 PM
Hi all,
I am using VB2005 and have an application with two list boxes on it.
My question is how does one check to see if an item in a listbox is selected
or not?
In VB6 I could write something like If listbox.Item(3).Selected = True then
......
What happened to the Selected property for ... more >>
CHM file with .NET
Posted by Fla at 6/27/2006 7:05:52 AM
Hy!
I've got the following question in VB.NET.
How can I access to a particular topic of a CHM file generated by HTML
Help Workshop?
Some newsgroups/sites on web suggest to use CHM file for help-on-line
and the HTML files for accessing a particular topic; but I want to use
only the CHM file al... more >>
Datagrid Super/Sub script
Posted by Dave at 6/26/2006 6:53:49 AM
Hi all,
I have a datagrid control in VB.Net populated from a datatable.
However one of the cells will have to contain both superscript and
subscript data within it. Does anyone have any idea of how to actually
do this?
Thanks in advance
Dave.
... more >>
Why won't this work??
Posted by Tony Van at 6/25/2006 2:25:49 PM
Can someone help on this. Why does this work:
(cat4 is a true/false database field)
IF DataTable.Rows(CurrRecord)("cat4") = True Then
CkBox5.Checked = True
Else
CkBox5.Checked = False
End IF
...... And this doesn't
IIF (dataTable.Rows(CurrRecord) ("cat4") = True, ... more >>
How to iterate thru combobox ?
Posted by Tony Girgenti at 6/23/2006 8:18:01 AM
Hello.
Using VS.NET 2003(VB), .NET Framework 1.1.4322, ASP.NET 1.1.4322, WSE2.0 on
a WinXP Pro Sp2 computer.
How do i loop thru a combobox to extract each SelectedItem in the combobox
from selecteditem 1 thru to the end of the combobox ?
I want to ignore selecteditem 0 (Zero). I know i... more >>
|