all groups > vb.net > june 2007 > threads for tuesday june 26
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Some beautiful example of tabcontrol ?
Posted by pamela fluente at 6/26/2007 10:31:51 PM
Hi,
I want to try design a TabControl (for instance
http://www.codeproject.com/vb/net/MDITabControl.asp).
For design inspiration, I would like to know pointers to
beautifully looking tabcontrol design either on the web or within
applications.
BTW: I do not want copy anyt... more >>
Object reference not set to an instance of an object
Posted by Ben at 6/26/2007 8:23:03 PM
Hi,
I want to access in code-behind a label within the ItemTemplate of a
Formview.
<asp:FormView ID="FormView1" runat="server" DataKeyNames="id"
DataSourceID="SqlDataSource1" >
<ItemTemplate>
<asp:Label ID="nameLabel" runat="server" Text='<%# Bind("name")
%>'></asp:Label>
code-behind:
... more >>
Problem with thread
Posted by nondos at 6/26/2007 5:11:28 PM
Hello i have problem with thread,
I have Form with listview and User control.
I need the User control to run thread that will clear the listview in the
main form.
the code work but it's not clearing the listview, i debug the code and i see
the line of clearing the listview execute and i don... more >>
Regular Expression for numbers like 12345.67, 123.45, 12.34, etc.
Posted by dmbuso at 6/26/2007 12:38:01 PM
I am looking for a regular expression that would filter numbers in my vb.net
application. The integer part could have up to 5 digits and the fractional
part up to 2 digits.
I came up with the regex pattern of ^[0-9]{1,5}$ for Five decimal digits
or less but I couldn't finish the express... more >>
Private Member Variable Naming Convention
Posted by Douglas McCormick at 6/26/2007 12:01:08 PM
Hello,
We are converting our VB .NET 1.1 code to 2.0. The compiler is issuing many
messages similar to the following:
warning BC40031: Name '_shoppingCartItemID' is not CLS-compliant.
They are all referring to Private Member Variables beginning with an
underscore "_".
In the past, th... more >>
Problem with ToTitleCase method
Posted by Robert Johnson at 6/26/2007 9:08:28 AM
Hi all. When I use this code I get the following error: "ToTitleCase is not
a member of frmPropertyMasterMaint."
I have placed both imports as reccomended by the help docs in the
declarations so I don't see why the problem.
Robert
Imports System
Imports System.Globalization
txtFir... more >>
Last item in treeview not visible when XP visual styles enabled. Help!
Posted by pamela fluente at 6/26/2007 4:41:03 AM
I am having a problem with the Treeview control.
I have 3 items in the Treeview. When I resize the form and the Height
of the Treeview decreases enough the vertical scrollbar appears.
The problem is that the vertical scrollbar appears NOT as soon as the
third item is covered by the bottom... more >>
How to add the manifest to resource of VB.NET?
Posted by Steven at 6/26/2007 12:00:00 AM
I want to add the manifest file(elevated UAC) to my vb.net application, how
to add this manifest to resource? Thank you.
The manifest file is below:
///////////////////////////////////////////////
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsof... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Control property available at design time only
Posted by Johnny Jörgensen at 6/26/2007 12:00:00 AM
I know that you can make a control property available at runtime only by
specifying <Browsable(False)>, but how do you make the property available at
designtime only?
Cheers,
Johnny J.
... more >>
|