all groups > dotnet framework > december 2003 > threads for tuesday december 9
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
How to create a deployment? (Project: combinatin of C# and VB6.0)
Posted by ksskumar2000 NO[at]SPAM hotmail.com at 12/9/2003 9:24:57 PM
Hi Friends,
My software's target is to creating a add-in for Outlook.
I am struckup of creating deployment of my software.
My software flow is as follows,
1. Complete functionality is done in C# Class library project
In this .dll I am used the following COM components,
a. Microsoft.... more >>
Order Of Events not Consistent
Posted by Elmer Miller at 12/9/2003 9:05:22 PM
I have found that the order of events when leaving a control are not
consistent but vary depending on whether you use Tab or the mouse to leave
the control. This behavior is documented (see link below) so it appears to
be by design, but I can't figure out why this should be the case. In one
case... more >>
Local Thread
Posted by penghao98 NO[at]SPAM hotmail.com at 12/9/2003 7:39:03 PM
Is it good ideas to use local thead as following example, then let
..Net garbage Collection take rest, to destory thread, release memory
and other?
Private Function DeleteUser(ByRef UserID As Integer) As Boolean
Dim deleteUser As Thread
Try
If Not IsNothing(DataBase... more >>
question on ftp and socket
Posted by siddharthkhare NO[at]SPAM hotmail.com at 12/9/2003 7:02:39 PM
Hi,
I am trying to ftp a file using socket class in system.net .
problem is it does not write the file on the server.
there are no errors.
below is the code
=============================
string strIPAddress;
int strPortNumber;
strIPAddress="IP address here";
strPortNumber=111;
IPEndPoin... more >>
ListBox
Posted by Hector at 12/9/2003 6:36:50 PM
I am trying to add an item to the list box but it displays something
different.
signal = "\n01\0OKAY\0@\r"
lbSignals.Items.Add(signal.ToString());
but it shows "[]01" - somthing like that.
I need it to display what the exact value is?
Is the "\n" thowing it off ?
Thanks
Hector
... more >>
How to change Service status
Posted by Viv at 12/9/2003 3:59:21 PM
Hi,
I want to change the Status of service through C# code. I
want the status of the service to change from Disable to
Automatic. How can I do this using .Net Framework. This
service is already installed on the machine.
-Viv... more >>
Problem writing file using .Net FileStream.Write to SGI fileserver
Posted by Daniel at 12/9/2003 3:29:31 PM
Hello
Since our client upgraded the CIFS fileshare server software (HELIOS
PCShare) on their SGI, our software written using the .Net Framework has
been unable to write to the CIFS shares, throwing a "Not enough storage is
available to process this command." when we attempt a FileStream.Write(... more >>
where to download microsoft .net framework 1.1
Posted by eddie wang at 12/9/2003 3:25:32 PM
Were can I download microsoft .net framework 1.1? Thanks.... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Trace custom objects
Posted by Donald Xie at 12/9/2003 11:50:24 AM
Hi,
I'm implementing a custom trace listener to manage the trace of custom
objects. For instance, I want the custom trace listener to listen to only
instances of MyClass:
Trace.Write(instanceOfMyClass)
In the trace listener, I override (among others) Write(object o) and
Write(string mess... more >>
failed to install .NET Framework Service Pack 2
Posted by Matthew Louden at 12/9/2003 11:22:46 AM
My computer has .NET framework installed, and I attempted to install .NET
framework service pack 2 but failed. Here's the error dialog box from
Windows Installer:
The upgrade patch cannot be installed by the Windows Installer service
because the program to be upgraded may be missing, or the up... more >>
Displaying TIFF with ASP.NET/C# - MemoryStream throws GDI+ Generic Error
Posted by codefun NO[at]SPAM escmag.com at 12/9/2003 9:51:01 AM
In C#, I am able to successfully stream a TIFF image that comes from a
BLOB field in a database, save it to file, then convert the pages
within TIFF file into jpegs (using GDI+) and display on the web (using
ASP.NET).
However, when I generate the Image object using FromStream (passing in
the ... more >>
Windows Service Config file
Posted by Joe Audette at 12/9/2003 8:59:08 AM
Every time I do a build on my windows service app it
deletes the config file from the bin folder.
I have to always remember to back it up and copy it back
after the build.
Anyone else seen this or know a solution?
Thanks,
Joe Audette... more >>
sscanf in c#
Posted by constantin at 12/9/2003 7:32:24 AM
Any equivalent of sscanf in c#, in other way
how to read a couple of int and float from a
given string without having to write a loop
with int.Parse, etc..... more >>
Setup Error: Failed to load resources from resource file
Posted by Benoit Drebet at 12/9/2003 3:10:02 AM
I have a service installed for some times now, running
24/7 (at least until now ...) and this morning I got this
error in my event log:
The description for Event ID ( 0 ) in Source ( .NET
Runtime ) cannot be found. The local computer may not
have the necessary registry information or mess... more >>
info required
Posted by csharp at 12/9/2003 1:12:11 AM
hi all,
i want to know about the add-ins written for automating MS
office, are these add-ins basically COM components? and if
so, is there by any means we can create these add-ins
as .NET components? any help in this regards would be
appreciated.
thanks all
csharp.... more >>
Transmit MIDI SYSEX data
Posted by Mike at 12/9/2003 12:45:19 AM
Hi. What is the best technology to use for sending MIDI
SYSEX data to MIDI ports using .NET.
Perhaps DirectX? Any quickstart tutorials available for
doing this?
Cheers
Mike
... more >>
Regular Expression pattern
Posted by Vannela at 12/9/2003 12:00:53 AM
I want to match a array pattern in the string specified
Specified string may be any one of this
public function fu_santhu(int a,int b[],string s)
public function ggggg(string sss[],float f,decimal
d,double dd)
public function rrrttt(decimal dd[], int a,int b,string sd)
So want to ... more >>
|