all groups > dotnet framework > january 2004 > threads for monday january 12
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
Format Text of a ComboBox with DropDownStyle "DropDown"
Posted by at 1/12/2004 10:19:53 PM
Hello,
I try to format the text of a combobox with DropDownStyle "DropDown".
I just mean the text which is displayed when the combobox isn't touched.
Usually it displays the ToString() method of the SelectedItem. But I want to
override the it.
Overriding the ToString() of the class of the Selec... more >>
Interrupts in VB (API)
Posted by D.Sn at 1/12/2004 7:30:52 PM
Hi all
I need to implement interrupt functioality like Int86() in C, In VB
I have an idea. What about precompiled assembly language use using
"CallWindowProc" .
I am not clear what situating this "CallWindowProc" is used.Thougth the help
for the function is avilable in MSDN i want to ... more >>
Issue running remoting server
Posted by mark at 1/12/2004 6:59:20 PM
I am trying to do some samples from a book but I can't
seem to run the remoting server.
I type this in the web browser:
http://localhost/testservice/testserver/testserver.rem?wsdl
I am suppose to get the web service definition lang but I
receive this message:
System.Runtime.Remoting.Remo... more >>
Looking for namespace that contains Tree class
Posted by Carlos Ortega at 1/12/2004 6:34:07 PM
Hello group,
With a question...
Does anybody know a namespace where I can find classic
tree data structure ?
Regards
Carlos... more >>
Two SqlDataReader for the same connection
Posted by Ruslan at 1/12/2004 6:21:37 PM
Hello,
I have:
Method1()
{
SqlDataReader dr = new DataReader();
....
while (dr.Read)
{
Method2()
}
}
Method2()
{
SqlDataReader dr = new DataReader();
....
while (dr.Read)
... more >>
Datatype issue
Posted by AJ at 1/12/2004 6:11:12 PM
Hi
I need to include the currency datatype in one of my .NET applications. What
is the namespace that should be imported for it? Like tehre is
system.datetime, system.date, what is the counterpart for currency?
Please help me.
Thanks
AJ
... more >>
C# and In-Place Activation
Posted by sdemooy NO[at]SPAM hotmail.com at 1/12/2004 6:09:26 PM
Can anyone point me to some sample code that shows
In-Place Activation or Visual Editing written
in C# or VB.NET?
I want to embed my application in a Microsoft Word
document. The effect I am after is like when you
insert a bitmap picture in Word; however, I want
to display my own custom v... more >>
Reflection - Transform a dotnet component to XML
Posted by Ahab Guirguis at 1/12/2004 5:48:53 PM
hello,
I receive an error with the recursive call......
Can any one see a problem with this approach....
Thanks in advance....
string xml = ToXmlProperties(new TextBox()
FwTextBoxXml.Text = xml;
//--------------------------------------------------------------------------
------
public ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Freeing memory used by old datarows
Posted by Leo Tohill at 1/12/2004 5:39:01 PM
Here's an interesting finding about when the memory of a datarow is freed.
if you do this:
DataRow newRow = dataTable.NewRow();
The new row will never be GC'd, even after newRow goes out of scope, and
even though the new row has state "Detached".
On the other hand, do this:
DataRow n... more >>
set the width of the menuitem
Posted by Franz at 1/12/2004 4:07:38 PM
I have set the owner draw of the MenuItem to be true. I have used the
MeasureItem event handler to set the width of it. But I don't need to draw
the menu item. I just want to use the default drawing code. So, what can I
do?
--
Franz Wong
My C++ and C# Site (Traditional Chinese) :
http://ww... more >>
SSL .NET Component
Posted by jacktow NO[at]SPAM hotmail.com at 1/12/2004 3:30:47 PM
Hello,
I am looking for a free SSL .NET Component. Is there anybody who knows
about one? ( It just needs to be free, I'm not after source code).
Thanks... more >>
URGENT
Posted by TO at 1/12/2004 2:28:45 PM
Hey buddies,
I am looking for a web site containing .NET growth surveys / statistics
North America (mainly) and all over the world. Can anybody help me ??!!!
Thx.
... more >>
Which process/which user changed the file?
Posted by mengfrank NO[at]SPAM hotmail.com at 1/12/2004 2:14:39 PM
Hi.
I can use FileSystemEventHandler to monitor file changes.
But how do I know which process/which user changed file?
Is there any information in FileSystemEventArgs?
Or I can get it somewhere else.
Thank you for your help in advance.
Frank... more >>
Catching ALL Unhandled Exceptions
Posted by James Hancock at 1/12/2004 1:48:12 PM
I would like to have some way that if there is no error handling and an
exception is thrown in our application that it will do a last resort error
handling so that we can send information to support about the error.
Anyone have any ideas? I've tried putting a Try/catch around the
Applicatio... more >>
Caching in Class Libraries (c#)
Posted by matandrews NO[at]SPAM lineone.net at 1/12/2004 12:32:16 PM
I have a class library in which I need to access a XML Document often
which is stored as a text xml file. Obviously, I therefore would like
to cache this XML Document as reading this into an XML Document type
each time its required wouldn't be efficient. Does anyone have any
pointers on this.
... more >>
stacktrace behavior in release/debug and in windows forms
Posted by Sankar Nemani at 1/12/2004 11:58:02 AM
Hi All,
StackTrace property of the exception object does not
seem to contain complete stack information in the release
version of a console application. In a windows forms
application(both release and debug versions) and in debug
version of console apps, it shows the complete stacktrace... more >>
BUG + FEATURE REQUEST: FolderBrowserDialog = broke and useless
Posted by discussion NO[at]SPAM discussion.microsoft.com at 1/12/2004 11:25:51 AM
Hi,
The following code shows the FolderBrowserDialog = broken.
FolderBrowserDialog folderDialog = new FolderBrowserDialog();
folderDialog.ShowNewFolderButton = false;
folderDialog.ShowDialog();
Setting ShowNewFolderButton to false does bugger all. If I set this to
... more >>
How to setup SMTP server and Wep server
Posted by Hai Nguyen at 1/12/2004 9:45:41 AM
HI everyone
I would like to know if anyone know how to setup a development server for
IIS like web server and smtp server. I'm a newbie wanna learn. I prefer any
articles, links, and guildlines
I appreciate any help
... more >>
.net on a Domain Controller
Posted by Kyle at 1/12/2004 6:49:02 AM
In previous experience of installing .net, does anyone
know if any issues related to installing .net on a Domain
Controller. I'm taking a look through support notes and
tech net, just wondering if anyone was familiar with any
issues. Thanks.... more >>
how to use ParameterModifier
Posted by mike at 1/12/2004 6:39:53 AM
Hi all,
It seems that "ParameterModifier" play an important role
in some case,such as in "Type.InvokeMember",but how to
understand "ParameterModifier" and how to use it?
Some sample code is expected.... more >>
comments wanted re side-by-side
Posted by mklapp at 1/12/2004 5:45:44 AM
Hello,
I am working with a client who has the need to load
both 1.0 and 1.1 of the .NET Framework onto their
machines.
Rightfully, they want to test existing apps running
with both versions before a general release of both
versions.
I am interested in any problems whatsoe... more >>
|