all groups > dotnet framework > december 2003 > threads for thursday december 4
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
upgrading .net from 1.0 to 1.1
Posted by christian Schaathun at 12/4/2003 9:58:14 PM
Hello
I have visual studio, that ships with framework 1.0 .
I need to upgrade this to 1.1, I downloaed the dotnetfx.exe from microsoft,
and installed it .
but this caused a lot uf bugs in my application.
After googling for a couple of days i found out that this was caused by
installation o... more >>
How to create COM exe server in NET
Posted by Volodia at 12/4/2003 9:54:39 PM
Hi
In VB6 it is very easy to create out proc server in ActiveX.exe project.
How to do that in .NET ?
If I understood properly - there are no ways to do that in .NET
It looks like by design?
Thanks,
Voloida.
... more >>
Passing arrays from Classic ASP to .NET components - How do you do this transparently?
Posted by Mark at 12/4/2003 7:09:26 PM
Hi
From what I understand, you can pass arrays from classic ASP to .NET using
interop, but you have to change the type of the.NET parameter to object.
This seems to be because classic ASP passes a variant containing an array,
and interop expects a parameter of type object if you are passing a ... more >>
Redistribute framework in install program
Posted by Romain TAILLANDIER at 12/4/2003 6:00:16 PM
Hi group
I try to add the Framework in the install of my soft. (I am newbie in
intalling prog ...)
I have create a Setup project, and have my output project, compile and run
it; it is works fine.
But if the destination computer doesn't have the framework it don't work.
I think i can redi... more >>
SmtpMail.Send in HTML format
Posted by bgsd at 12/4/2003 5:02:20 PM
I'm trying to email a web page (exported from Crystal
Reports) via:
email.BodyFormat = MailFormat.Html
email.Body = sHTML 'Web Page imported via FileStream
System.Web.Mail.SmtpMail.Send(email)
The email is sent, but the formatting messed up.
1) I've confirmed the .htm file appears fin... more >>
JIT Debugger
Posted by Sean at 12/4/2003 4:30:30 PM
Hello, I have developed an application using Visual
Studio .Net 2003. When I attempt to launch the exe file
on another computer I get an error stating that JIT
Debugger is not available. The computer at which I am
trying to execute this file is capable of running
other .exe files as it i... more >>
DataTables and Column Conversions
Posted by robinsoh NO[at]SPAM vu.union.edu at 12/4/2003 1:41:20 PM
Hello,
I'm calling the DataTable.Compute(string expression, string filter)
public method to perform simple mean, min, max, etc. computations.
However the data stored in this table, let say people's ages, is of
type nvarchar/string and I need these computations to be performed as
if their type w... more >>
Record Position Problem
Posted by Mark Vergara at 12/4/2003 1:07:17 PM
Hi to all,
I want to know if there is a way of getting the position of the
particular record in the dataset aside from CurrencyManger.position
let say for example we have a record..
cntID Name
1 Richard
2 Lucas
3 ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Execute method in another thread
Posted by Dierk Droth at 12/4/2003 12:46:11 PM
Hi,
I have 2 threads. Is there any way to execute a method
called vom thread 1 in the thread context of thread 2?
I'm aware that Control.Invoke excutes a callback in the
control's thread. But there is no control in my code :-((.
Any other solution ?
Strange, I couldn't find anything i... more >>
Checking Framework version
Posted by Legrooch at 12/4/2003 11:31:19 AM
I have a question - how check what version (or is installed) of framework is
on a workstation? I know that i can do this by registry, but i need a sample
code for my application.
Can anyone help me?
... more >>
Unable to use breakpoints in debugger
Posted by Marc at 12/4/2003 8:32:34 AM
When I run debug with a breakpoint set the breakpoint
appears with a "?". When I place the mouse pointer over
the breakpoint the following information is provided:
"The breakpoint will not currently be hit. No symbols have
been loaded for this document."
Anyone know how to get the symbol... more >>
Replacing an API call with a .Net Class
Posted by Robin at 12/4/2003 7:42:17 AM
Hi
I would like to know how to replace our WIN API Shell
command call (shell with 2 arguments) in .Net using the
framework but I cannot seem to find the equivilant
class/method. Would anyone be able to point me in the
right direction?
Thanks,
Robin... more >>
Sizing form...
Posted by Me at 12/4/2003 6:22:23 AM
Why won't my form shrink down to a smaller size?
Here is the code:
private void InitializeComponent()
{
//
// Form1
//
this.AutoScaleBaseSize = new
System.Drawing.Size(200, 200);
this.ClientSize = new
System.Drawing.Size(200, 200);
this.ControlBox = false;
... more >>
Uninstalling if no AddRemovePrograms Icon
Posted by michael at 12/4/2003 5:10:07 AM
Under the don't do this catgory:
I created an application and forgot to include an
AddRemoveProgramsIcon. Now I can't remove the application
from the control panel. I can't seem to install a newer
version over it without getting a message that instructs
me to remove the application from t... more >>
clone a datagrid
Posted by felix666007_no_solicitation NO[at]SPAM yahoo.com at 12/4/2003 1:50:33 AM
Is it possible to clone a datagrid?
I've created a datagrid on my aspx page, editing various attributes,
adding columns, etc. I would like to, in code, create an arbitrary
number of these datagrids. Any ideas?
I thought that perhaps I should createa a separate "web user control".
I added m... more >>
|