all groups > c# > november 2004 > threads for sunday november 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
Controls auslesen
Posted by Stephan.Klokow NO[at]SPAM ACGT-ProGenomics.de at 11/14/2004 11:57:11 PM
Hallo,
ich habe eine Frage bezüglich des auslesens von Controls von
Programmen. Ich schreibe an einem Programm, welches ein externes Tool
starten soll. Das starten an sich ist kein Problem. In dem externen
Programm soll nun ein bestimmer Menüpunkt ausgeführt werden. Dieser
ist jedoch nicht über... more >>
SVG Integration
Posted by David DeLella at 11/14/2004 9:05:03 PM
I currently have a SVG object using the adobe svg plugin for Visual C# .NET
2003. The tool is working fine....I can load the svg and use all the feature
of svg including zooming, scaling, etc. What i want is a way to control the
SVG from a navigational panel outside the SVG component in the ... more >>
Enable Optimizations
Posted by Hareth at 11/14/2004 8:56:44 PM
VS2003:
In the properties of the solution, their is a checkbox that lets you "enable
optimizations".
What are the pos & the neg?
Why isnt this automatic? doesnt everyone want an optimized build?
... more >>
How to extract ALL emails from Use's outlook Express?
Posted by jiangyh at 11/14/2004 7:53:34 PM
hi guys:
I have a task that extract some emails from user's outlook express,how
to resolve this .
thanks in advice
jiangyh
... more >>
Get Server Property Names Programatically?
Posted by clintonG at 11/14/2004 6:58:38 PM
Somebody help me learn which class and methods may be used to get the names
of all properties for a given server control? Thank you...
--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET csgallagh... more >>
Media Player on Toolbar
Posted by david at 11/14/2004 6:08:03 PM
When Windows Media Player is minimumized on its toolbar, the player has a
compact player interface. Can something like this be done with VS.NET? And
How?
TIA,
david... more >>
is it possible to load a dll into application at runtime?
Posted by Tee at 11/14/2004 5:41:13 PM
is it possible to load a dll into the application at runtime?
eg: a main application, and a few dll, each dll might contains some
function, properties, or windows form. All of them were built in .NET.
So those DLL might look like a plug-in for the main application, is this
possible to achiev... more >>
Volume Control
Posted by Bill English at 11/14/2004 5:28:02 PM
Could someone please provide me with some resource as to building an
application similiar to the Microsoft Windows Volume Control, I need to be
able to mute certain outputs and input, and I need to monitor the levels of
the input and output.
--
I am a 15 year old C# developer, I am comple... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
VB GlobalMultise Class
Posted by Gonçalo Boléo at 11/14/2004 5:23:32 PM
Can i have in C# classes that are like VB6 classes GlobalMultiUse?
I have a class with general functions supporting my programming and i don't
wan't to instanciate it in every class that i need to use it.
thanks,
Gonçalo Boléo
... more >>
event handler calling sequence dependable?
Posted by Fei Li at 11/14/2004 5:11:01 PM
I do not know if event handlers are called by the sequence of the subsription
sequence.
... more >>
Check is string is a valid url
Posted by Gonçalo Boléo at 11/14/2004 4:48:06 PM
Is there any way to check if a string is valid URL?
thanks,
Gonçalo Boléo
... more >>
Using C# to send and receive xml data
Posted by JD at 11/14/2004 4:31:05 PM
Hi --
I've scanned a ton of google results and am sort of confused by all the
different objects that can be used for this. Here's what I need to do
(fairly simple) --
Construct an xml object in memory and fill it with some arbitrary
data.
Send this xml object to a web ser... more >>
Know how ArrayList Works?
Posted by wackyphill NO[at]SPAM yahoo.com at 11/14/2004 4:02:45 PM
Anyone know the internal working of this thing. I expected it to be
kinda slow at enumerating large lists of objects but it was actually
pretty good. I was able to write a quick linked list class that beat
it at enumerating but was not as fast as the arrayList at actually
adding the items into t... more >>
How to add a reference from the gac?
Posted by Julia at 11/14/2004 3:54:28 PM
Hi,
My solution contains several project
some are result in a DLL which placed in the GAC
What is the correct way to add references to those dll?
should I add a reference to a local dll when building the solution?
Thanks.
... more >>
Multiple referenced project - build suggestions
Posted by Tamir Khason at 11/14/2004 3:37:20 PM
I have big and complicated solution as following:
FooForm -> FooClass1 <- Foo1,Foo2,Foo3.........
^
|
FooClass2
-> means that the project have right hand project as referenced assembly,
without being copied locally.
FooForm,... more >>
Adding a 10 second delay
Posted by Jawahar at 11/14/2004 3:13:06 PM
All,
I am using a while loop like so
bool bProcess = true;
while (bProcess)
{
//Do some processing
//update to Database
if (tablelocked)
{
wait 10 seconds try again;
break;
}
else
{
commit;
bProcess = false;
}
}
How do i ... more >>
C# language issue. using and lock statement with multiple items?
Posted by stonge-jim NO[at]SPAM ic.net at 11/14/2004 2:09:50 PM
My company's code often includes locks, using statements, and
try/catch blocks and ends up with a lot of brackets. Would it make
sense for C# to allow multiple items in these types of blocks?
i.e.
lock (this.var1, this.var2)
{
using (Font font=this.CreateFont(), Brush brush=this.Creat... more >>
Replacing a line from a text file
Posted by joaquimfpinto NO[at]SPAM solverde.pt at 11/14/2004 2:01:28 PM
Hi All,
I'm using a richtextbox to find a particular string on a text file.
Each line has more then one string separated by comas, like this:
11-11-2004, 08:30:00, 02:56:00, 04:00
I want to find a particular date, which I can do by using the find
method and then replace the following s... more >>
using clause and implementing IDisposable
Posted by Razzie at 11/14/2004 12:51:40 PM
Hi,
I know that as a general rule, whenever your class contains members that
implicitly or explicitly implement IDisposable, your class should too.
However, does it count when my class uses a using claus?
class A
{
private void doSomething()
{
using(StreamReader sr = new... more >>
Adding resource
Posted by Bern at 11/14/2004 11:25:54 AM
This message is probably out of topic but I get no response from the less
popular microsoft.public.dotnet.general newsgroup.
Is there a resource manager of some sort in VS C# .NET which you can use to
add resources such as icons, textfiles, etc. ? AS far as I see it, pictures
can only be added... more >>
C# and MSAccess
Posted by Zagor at 11/14/2004 11:16:29 AM
Hi everybody,
I have a question regarding creating a new Access Database programmatically
with C#. Does anyone knows how to? Is there any link out there with good
info?
Thanks for your time
Frank
... more >>
Populate xsd generated classes
Posted by Oscar Thornell at 11/14/2004 11:04:38 AM
Hi,
I have a rather large structure of XML that I need to work with...
I have constructed a schema, which I then used from xsd.exe to generate C#
classes...ok! no problem!
But what is the best way to populate those classes with my XML?
Does .NET framework have any helper classes for this..... more >>
SaveFileDialog event
Posted by Dennis C. Drumm at 11/14/2004 10:16:04 AM
Is there a way for the parent that calls the SaveFileDialog.ShowDialog to
consume events associated with this dialog such as LocationChanged, Moved
and Closed events?
I had been working on a way to customize the SaveFileDialog and on second
thought think it might be better to attach a Fixed... more >>
IsInstance() ?
Posted by vertigo at 11/14/2004 8:15:20 AM
Hello
How can i check if specified value still points to exsting object
instance ? I receive errors "Object reference not set to an instance of
an object".
Thanx
Michal
... more >>
Newbie: How to loop through controls given form name?
Posted by deko at 11/14/2004 7:53:06 AM
I'm trying to create a class that will return a string based on a switch
statement that matches a control name.
The app in question has several forms, and I want to provide in-form help
based on which checkbox is checked. So, in the different form classes, the
code would look something like t... more >>
global:: ?
Posted by sloppycode NO[at]SPAM gmail.com at 11/14/2004 6:03:38 AM
Have I been missing a keyword in C# for the past few years, is it new
to beta 2.0, or is it a bug in vs.net 2005 beta1? You type in global::
and get a load of namespaces? My first guess would be that it's a bug
with the intellisense, using c++ intellisense by accident..
For example
throw new ... more >>
which source files to send
Posted by Wilfried Mestdagh at 11/14/2004 6:03:04 AM
Hello,
If I make an application in C# and want so send/share the project source
with someone else, which files do I have to send ? (because many files will
be generated again if missing, but dont know which ones).
--
rgds, Wilfried
http://www.mestdagh.biz... more >>
Load icon from dll resource [newbie]
Posted by ms NO[at]SPAM lerkins.com at 11/14/2004 5:37:33 AM
Hi,
I've got dll resource file [icons.dll] with icon and I don't how to
get it.
Is it exists something like:
Icon myIcon = ...icons.dll...?
I've read about Loadlibrary(), LoadResource() and ExtractIconEx() -
but there is a problem - I don't have this function.
Tnx for help... more >>
C# Language Spec (7.13.2)
Posted by Rene at 11/14/2004 4:10:11 AM
The section 7.13.2 (Compound assignment) of the C# language specification
has the following paragraph:
The term "evaluated only once" means that in the evaluation of x op y, the
results of any constituent expressions of x are temporarily saved and then
reused when performing the assignment... more >>
bubble even problem user control
Posted by Tom at 11/14/2004 2:59:15 AM
hi guys I spent about a day on this I still can't get it to work...
http://odetocode.com/Articles/94.aspx
could you try ? see if it works if it does please show me the source...
I'm puzzeled concept is good but code doesn't work :(
Thanks
Tom
... more >>
Autocomplete combobox in DataGrid
Posted by Kurt at 11/14/2004 1:32:24 AM
Hi,
Is it possible to add an Autocomplete ComboBox column in a DataGrid?
Thanks.
... more >>
Port Enumeration
Posted by Loui Mercieca at 11/14/2004 1:07:48 AM
Hi,
I have an application which uses Serial,Parallel and USB communication. It
also has a configuration page, however i need to enumerate the available
ports ( for all serial, usb and parallel ports). Through a quick search i
found multiple registry keys which are said to give this informat... more >>
Why Delegate become an Event???
Posted by Sharon at 11/14/2004 1:04:01 AM
Why when instantiating a delegate the prefix “event†is added?
For example:
public delegate void ExampleDelegate(string str);
class example
{
....
public event ExampleDelegate DelegateMember;
....
}
If a drop the “event†prefix it's still working nicely, so why the “eventâ... more >>
Asynchronous socket programming vs. remoting
Posted by Michael Lindsey at 11/14/2004 12:03:42 AM
I need to write a server app to send images to client GUIs that are outside
of the server's domain.
The client will have the file system path to the image but can not access
the file system.
I am trying to decide if I should use remoting vs. writing a server that
uses networkstreams.
I have ... more >>
|