all groups > dotnet general > november 2006 > threads for friday november 3
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
Why Listview ?
Posted by --== Alain ==-- at 11/3/2006 7:29:03 PM
Hi,
I would like to know why a lot of people wants to work with ListView
control when DataGridView control already do the same thing ?
for example, in my case i would like to display spin controls,
progressbars controls, images, text, checkboxes,...
it's now more than 2 weeks that i try... more >>
writing to the 32-bit registry from a 64-bit application (that darn WOW6432Node)
Posted by Chris Mullins at 11/3/2006 3:14:47 PM
I need to write to the 32-bit registry, and need to do so from a 64-bit MSI.
It never occurred to me that this would be difficult...
I have an application that installs some 64-bit binaries for development use
in Visual Studio 2005. As such I want them to appear in the .Net References
menu w... more >>
app.config file
Posted by HLong at 11/3/2006 3:06:02 PM
Hi, I am using the app.config file to store the ConnectionString to the data.
I want to add a list of table names to this file so I could populate a combo
on FormLoad.
I found very easy to get the ConnectionString using the
ConfigurationManager.ConnectionStrings("name"), whoever I could not ... more >>
please help on some general concepts on data c# 2.0 vs2005
Posted by AAJ at 11/3/2006 2:38:12 PM
Hi all
FIRST THE BORING BITS.......
I normally use a Database layer, a Business layer and a GUI layer.
The GUI uses an Object data source to bind to the Business layer which in
turn binds to the database layer. Every thing is great. I can read data,
change data in the grid, update the d... more >>
MDI child form does not show MdiList property in VS2005
Posted by Ricardo Maciel at 11/3/2006 2:30:02 PM
The How to page:
http://msdn2.microsoft.com/en-us/library/7aw8zc76(VS.80).aspx
walks through the creation of MDI child forms.
It includes instructions to set the property MdiList to maintain a list of
open MDI child windows.
However, I can't find the MdiList property in the properties ... more >>
Sunset Date for .NET 1.1 Support
Posted by Rob Szumlakowski at 11/3/2006 2:20:02 PM
Hi.
I'm trying to determine what the expected Sunset Date for the official
termination of support for the .NET 1.1 platform? When can we expect
Microsoft to stop supporting .NET 1.1 and expect everyone to have moved on?
Thanks.
Rob Szumlakowski... more >>
The application failed to initialize properly (0xc0000005)
Posted by John Todd at 11/3/2006 2:13:36 PM
Hi, all.
I've been working on a .NET project written in C# for the past three
months. Yesterday, all of a sudden, I get The application failed to
initialize properly (0xc0000005) error when i try to execute the .exe I
built from my project. I'm sure I did not do any .NET framework
install/u... more >>
Microsoft Asleep At The Wheel Again: Missing the New Era of CAD
Posted by clintonG at 11/3/2006 11:04:18 AM
Google and Second Life have proven there are market$ and economie$ in the
virtual worlds they and others have created. Applications in these virtual
worlds require the use of vector graphics applications which are used to
design, draw, and draft the user interfaces *within* the virtual world.
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Dynamically Load User Control
Posted by Nick at 11/3/2006 7:51:03 AM
I have two navigation user controls and based on a query string will load one
or the other.
On the page that will load the user control I cannot do the following
Dim uc As FlashNavigation (The name of the code behind class)
I also can't do CType(uc, FlashNavigation)
I get Type 'FlashNav... more >>
Access dot not web app from outside and inside firewall?
Posted by mscertified at 11/3/2006 7:30:02 AM
We are developing a web app that will be used by emloyees (from our internal
network inside the firewall) and by non-employees (from outside our network
and firewall). We'd like to be able to authenticate users based on this fact.
In other words internal users will be authenticated based on th... more >>
Assigning Array variables to a list box
Posted by matthew.macdonald-wallace NO[at]SPAM fujifilmsericol.com at 11/3/2006 3:01:18 AM
Hi all,
I'm trying to add functionality to an app written in C# so that a list
of people is displayed in a list box on the left hand side and then
selected individuals can be added to another list box on the right-hand
side.
I've got the data from my database into a database reader and I ca... more >>
Event Raising in Multithreading Environment
Posted by Zeeshan Gulzar at 11/3/2006 1:46:02 AM
Is there any difference between following codes.
public event EventHandler Click
when Raise this event:
if(Click != null)
Click(this, EventArgs.Empty);
or
if(Click != null)
{
EventHandler temp = Click;
... more >>
VS.NET 2005: Debug: Go to calling function?
Posted by Pieter at 11/3/2006 12:00:00 AM
Hi,
How do I do this in Visual Studio .NET 2005? I want to kind of jump out of a
function, but without executing the next lien of code?
For instance: If I have a method MyTestMethod(strParam as String), which is
called over 100 times in my application from different other methods. When
a... more >>
|