all groups > c# > 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
Mouse move events
Posted by suhas at 8/14/2003 6:36:22 PM
Hi,
I have an MDI app that allows user to create flowcharts.
User can drag flowchart objects (squares, rectangles,
elipses, etc) from the toolbar and put on a form. They
should be able to move the objects around on the form.
This is where the problem is, I have implemented this
using ... more >>
Class View Renames Namespaces
Posted by Noah Coad [MVP .NET/C#] at 8/14/2003 6:35:29 PM
Something is stange is happening in my 'Class View'.
First of all, it doesn't show all the classes in each namespace in my
project. I have over 50 classes in one project and only 6 show up. Besides
that, when I first load the solution, all the namespaces show correctly.
After I click on one ... more >>
IDE AutoComplete Bombs Out
Posted by Noah Coad [MVP .NET/C#] at 8/14/2003 6:32:28 PM
For no appearnt reason, the AutoComplete stopped showing me the members of a
number of classes used in my project. It was working just fine, and as of
yeasterday, AutoComplete stopped working. It works with some classes, but
not others. I didn't change anything that should effect this.
The ... more >>
Printing - PrintPreview Dialog and Printing on Paper - text is being changed
Posted by plarb NO[at]SPAM hotmail.com at 8/14/2003 5:05:47 PM
Good morning,
I have a print routine where I use a "printpreview dialog' control.
The text is perfect
BUT
when I then print the job all the text is completely crazy, a bit like
"wingdings".
Also, I have downloaded a free demo off the web and that demo works
fine (uses printpreview a... more >>
who created a process?
Posted by Strahimir Antoljak at 8/14/2003 2:29:46 PM
Is there a way to find out the name
of the user who created a process.
Some kind of process property or method
that would report the user name how launched
it?
(but not Environment.UserName)
Thanks,
--
Strah
... more >>
Image at startup.
Posted by Jesper at 8/14/2003 2:23:13 PM
Hi folks
Like word, photoshop and other programs, an image is
shown at startup while the program loads dll's, and plug-
ins. I would like to do the same with a windows
application I've made while it reads some files and
establish a connection to a database. I can display an
image in the ... more >>
C# Problem, please help
Posted by Rudolf Ball at 8/14/2003 2:14:58 PM
Hi NG,
I have an interesting problem. I have written a simple AddIn-Framework where
I load Assemblies in with
Assembly.LoadFrom(...
Now I want to globalize the Plugins, so I have written a routine like this:
public Globalizator(Object obj)
{
this.obj = obj;
}
public void Translate... more >>
C# For What?
Posted by Brian Scott at 8/14/2003 1:42:11 PM
Thought I'd start a thread,
What does everyone reading use C# for? What field of computing?
--
Regards,
Brian Scott,
Mosaic Software Ltd,
UNIT 12,
Brunel Building,
Scottish Enterprise Technology Park,
East Kilbride,
G75 0QU.
Tel: 01355 272641
Fax: 01355 230006
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Reading an Int32 in network byte order from NetworkStream?
Posted by Scott at 8/14/2003 12:48:42 PM
I'm writing a C# server application that is reading from a socket sent
from a C++ client program. The C++ client program is sending the
following data:
struct
{
int stringLen;
actual ASCII string;
};
stringLen is intialized with the following C++ code:
htonl(std::string::size());
... more >>
Where is the main in Windows service?
Posted by R A at 8/14/2003 11:40:40 AM
Hi
In Windows Service application where is the main function? I see that in my
code I have
static void Main()
but when I put a break point it never gets there.
Thanks,
Ronen
... more >>
Missing "Output Type" option
Posted by Mark at 8/14/2003 11:40:24 AM
Visual C# .Net Standard 7.1.3088
I'm trying to change the type of application from a windows to a console
app. I go into the project properties --> Application -->
According to the help, I should have:
Assembly Name
Output Type
Default Namespace
Startup Project etc etc.
I've got all of... more >>
[ANN]Innovation to ADO.NET - Object Access Services for .NET
Posted by Carlos Santana at 8/14/2003 11:33:48 AM
New Software Matisse Software Inc. provides its native ADO.NET Data
provider for Matisse 6.0, the Database for .NET. Matisse Software has pushed
the envelope of Microsoft ADO.NET architecture and extended it into a
powerful Object Access Services component for .NET. Unlike the standard... more >>
Looking for C# book recommendation
Posted by Gabriel Reid at 8/14/2003 11:18:24 AM
Greetings,
I'm looking for any books that the members of this group may have to
recommend for C#. I have experience with a number of programming languages
(probably most relevant would have to be Java), and have already read 'C#
for Java Developers' from Microsoft Press. I feel as though I hav... more >>
c#/aspx error handling
Posted by suzy at 8/14/2003 10:11:15 AM
i am trying to write aspx login system and the login process requires a
validity check of username and password.
i have been told that raising exception is costly, but i want a custom error
message to be displayed depending on what error occurred (let's say: invalid
username, invalid password,... more >>
Dynamic Properties in user control
Posted by Guy Harwood at 8/14/2003 8:28:01 AM
Hi,
I have designed a textbox that inherits from the
System.Windows.Forms.Textbox control.
when the control is readonly the back color changes to a
light blue to indicate that it is frozen.
This all works well, but i would like the color to be
configurable via the app.config file.
... more >>
stream read from uri
Posted by Kun at 8/14/2003 8:23:11 AM
Dear all,
I want to create a simple app. to read content of a website.
Which name space should I use?
How to start :)
Regards,
Kun
... more >>
|