all groups > dotnet general > august 2003 > threads for thursday august 14
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 31
Over Exposure
Posted by Randy at 8/14/2003 7:23:24 PM
Is there a way to share types across assemblies without
exposing them publically?
Is there a way to include multiple projects in a single
assembly?
Is there a way to hide a namespace?
Am I really going to have to pack all my work into a
single project just to control what is exposed s... more >>
Array.sort question
Posted by its me at 8/14/2003 6:01:18 PM
Let's say I have a class of people...
Public Class People
Public Sex as String
Public Age as int
Public Name as string
end class
And I declare an array of this class...
Dim MyPeopleArray(3) as People
Then I fill my arry with 3 people...
... more >>
Using Crystal Reports 8.5 with .Net
Posted by rAGHU at 8/14/2003 5:11:29 PM
Hi,
In my ASP.NET web application project we need to design
crystal reports with Crystal Reports version 8.5
enterpraise edition(Please Note:It is not the Crystal
Reports that comes with VisualStudio.NET). Also the
Crsyatl Report software 8.5 version will not be installed
in the IIS web... more >>
real time network packet capture
Posted by matthias at 8/14/2003 5:00:23 PM
hello everybody,
i want to capture traffic in promiscous mode from ethernet adapter. i
have visual studio and the framework sdk installed. i have read at the
msdn library about the network monitor architecture. but i did not
find any concrete examples or howtos about programming. i expected i
... more >>
Creating BLL apps for a clustered environment?
Posted by billym at 8/14/2003 4:07:00 PM
Is there any information on building BLL middle tier
applications to run in an MSCS configuration? IOW, I am
not just interested in scalability but fault tolerence as
well but am unsure if there are design issues that must be
baked in from the beginning in order for this to work?... more >>
New Attribute
Posted by Zviki Goldberg at 8/14/2003 3:51:37 PM
Hi All..
I tried to create an attribute,more or less the same as .NET role base
security provides (I mean like PrincipalPermissionAttribute). I inherit from
CodeAccessSecurityAttribute and it compiled.
When I put the attribute in my ASP.NET project I got the following error :
c:\inetpub\www... more >>
What Operating System
Posted by Darrell Wesley at 8/14/2003 12:46:26 PM
I'm looking at diving into .net and have several questions.
At this plant site we have a diversity of PC's with
different operating systems from WIN98, Win2000 to XP-Home
and XP-PRO and NT 4.0.
Which operaing systems can the .net development system be
installed on?
Which operating sys... more >>
Trial version software
Posted by Billy Masopust at 8/14/2003 11:36:19 AM
I am trying to develop a beta version of some software in
Visual C#. The software needs to expire and basically
self-destruct in 15 days. How do I get the program to do
this? The program needs to check the system date every
time the application is ran to see if it has expired. I
also need h... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Setting DropDownList selectedItem from database values
Posted by Steve at 8/14/2003 10:56:25 AM
I'm loading a dropdownlist control from values in a
database.... after I load the drop down, I need to set
the selecteditem to another database value... when I do
this the drop down has an additional value added to the 0
position rather than setting the proper value.... more >>
.NET UserControl in VB6?
Posted by Paul Joes at 8/14/2003 9:02:46 AM
We're starting to look at Visual Studio.NET.
In order to smooth the learning curve, we were hoping to
create a project in VB.NET that creates the equivalent of
the old VB6 OCX, the intention being that we call the new
control from our existing VB6 projects to move our legacy
code forward ... more >>
Waiting Form
Posted by John at 8/14/2003 8:39:36 AM
Try to implement an waiting form, which has a label and a
textbox, as below:
FormWait fm = new FormWait();
fm.Show();
for (long i = 0; i < 20000000; i++)
{
// some lengthy operations
}
fm.Close();
The texts of the label and the textbox won't display until
the for loop ends. How can... more >>
building tree is slow
Posted by Max at 8/14/2003 6:36:41 AM
We want to implement assigning permissions to web pages
using a tree like view. The text below illustrates what
the page would look like. Each of the items in the boxes
are types of permissions (i.e. A = Add, M = Modify). If a
user has permissions the box is green, if not red. When an
admi... more >>
Problem With DataAdapter
Posted by Wayne Wengert at 8/14/2003 5:49:08 AM
I am trying to fill a dataset with a list of user tables from an Access
database. When I run the code (below) I get an error on the myDA1.Fill line.
The error message is: "Value cannot be null".
If I copy and paste the SQL string into an Access query it works fine. The
connection string is val... more >>
Event
Posted by Thomas at 8/14/2003 2:11:41 AM
Hi there
I build a class "ButtonClass" with two private
Buttons, "OK" And "Cancel".
Now, I would like to use this class in a Windowsform for
example three times.
ButtonClass c1 = new ButtonClass();
ButtonClass c2 = new ButtonClass();
ButtonClass c3 = new ButtonClass();
I assume the E... more >>
|