all groups > vb.net > june 2005 > threads for saturday june 18
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
paged combobox
Posted by migueldc at 6/18/2005 4:05:01 PM
I remember reading recently an article that described custom comboboxes
and/or listboxes that are designed to handle large number of entries
downloaded from a database. Instead of downloading all the entries at once,
they download and show the first n entries and give the user a way to access... more >>
Trying to find ClientID of web form - Update
Posted by Neo Geshel at 6/18/2005 12:07:40 PM
This works:
<form>
<asp:TextBox id="name" />
<%= name.ClientID %>
</form>
But this DOES NOT work:
<form>
<datagrid id="dg">
<asp:TextBox id="name" />
<%= name.ClientID %>
</datagrid>
</form>
and throws an error of:
Compilation Error
Compiler Error Message:... more >>
Trying to find ClientID of web form
Posted by Neo Geshel at 6/18/2005 5:32:21 AM
I need to get the ClientID of a form field for some JavaScript. About
25+ web sites I visited recommend the following method for finding the
client ID of a web form:
Web Form -> <asp:TextBox ID="datefield" type="hidden" Runat="Server" />
Client ID -> <%= datefield.ClientID() %>
Unfortunatel... more >>
Start 20 Threads, stop them all after 10 seconds
Posted by Mark B at 6/18/2005 12:00:00 AM
Hi
I was wondering if someone could help me with the syntax for some VB.Net
ASPX code to:
- Start 20 threads
- End all threads after the sooner of 10 seconds or if all of the threads
themselves have finished.
BTW, each thread checks an email address for validity with www.aspnetmx.com.
I... more >>
Pointers??
Posted by Newbie at 6/18/2005 12:00:00 AM
Does VB.NET allow use os pointers like in C++??
example:
int* i = &f;
how would this line of code be in vb.net?
thanks!
... more >>
Math issue?
Posted by David A. Osborn at 6/18/2005 12:00:00 AM
I'm doing the below calculating in VB.net. All variable are declared as
double and their contents are below.
mdblMidtermWt 0.2 Double
mdblFinalWt 0.2 Double
mdblAssignWt 0.2 Double
mdblGroupWt 0.3 Double
mdblP... more >>
Large Datasets and Comboboxes
Posted by lgbjr at 6/18/2005 12:00:00 AM
Hi All,
I need some advice. I have a table in MSDE2000 with about 3 million records.
It's a city database. What I want to do is have 3 comboboxes on a form. The
first would be to select a country, second, to select a region (state,
province, etc) in that country, and the third would be a list ... more >>
|