all groups > dotnet distributed apps > october 2003 > threads for october 29 - 31, 2003
Filter by week: 1 2 3 4 5
How to stop while loop
Posted by Prasad at 10/31/2003 9:02:02 PM
Hi:
See this code :
While iCommand.Connection.State = ConnectionState.Closed
Try
iCommand.Connection.Open()
Exit While
Catch ex As Exception
Console.Write(ex.ToString())
End Try
End While
In the above code, checking connection state if closed database connection
will... more >>
Question on Facade
Posted by jimpappa at 10/31/2003 10:42:08 AM
Hi All,
We are developing a smart client based applicattion in .NET.
When the application design is finalised, we will have about 60-70 objects
in the middle layer...
We want to decide whether to expose these objects directly as remotable or
whether to use a thin facade layer to suite our... more >>
Can't get WinUIP Store started
Posted by Jesse Naiman at 10/30/2003 10:35:28 PM
I have SQLServer2000 installed and the database has been created. When I run
WinUI the program throws an error message during the call to
"GetCustomerByEmail". I think the login information in the config file is
wrong. Since I'm new to botht the Application Blocks and SQLServer I'm not
sure how ... more >>
Application Design: ADO Components
Posted by Ursula Peter-Czichi at 10/30/2003 12:01:01 PM
This is a newcomer's question (So far, I have produced
only small applications to run on computers within my
reach, using text files instead of "real" databases.)
What I want to do:
Create a self-contained Windows Application;
Allow the user to create a database;
Allow the user to store an... more >>
Excel Automation remains open after closing
Posted by E.P. at 10/29/2003 12:20:48 PM
Hello,
I have an VB60 app that I converted to .Net. Throughout
the app. Excel is opened and manipulated and then shutt
down. In order to prevent conflicts w/the user, excel is
closed after each process. All instances of excel are
successfully removed from the process list with the
exce... more >>
|