Feedback about experiences deploying .Net 3.5
Tue, 26 Aug 2008 23:52:55 -0700
My company is considering moving up from .Net 2.0 to .Net 3.5(SP1) as a
prerequisite on the ClickOnce deployment for our application.
Does anybody have any experience deploying .Net 3.5 either as a
prerequisite, or just by itself? Have you had any problems installing it?
One issue I've seen reported is w ...
|
Evidence of referenced assemblis is not inherited with Assembly.LoadFrom()
Wed, 27 Aug 2008 13:55:41 +1000
Hello,
I have 2 assemblies A1 and A2. The A2 depends on (references) A1. When I do:
Evidence ev = new Evidence(new object[] { new Url(@\\myhost\myshare), new
Zone(SecurityZone.MyComputer) }, new object[] { });
Assembly A1 = Assembly.LoadFrom(assembly1Path, ev);
And then use any method in A1 all works fin ...
|
Launching an app from within my Winforms app
Tue, 26 Aug 2008 14:30:42 -0500
I'm trying to launch another (WinForms) application from my WinForms app. I want it to work like launching an app from Explorer, i.e. I don't want my
app to have any ties to the app it launched. I've tried to use Process.Start but it doesn't see to be passing my command line parameter and if there
is already a ...
|
How to create customer defined user interface layout with xaml
Tue, 26 Aug 2008 10:24:49 -0700 (PDT)
We are developing a new WPF application. We have created an
application that code generates some of the user interface controls
into XAML from earlier created Entities. The problem I am stuck with
is that some of our customers want their WPF form controls laid out in
a different order than other customers. Ha ...
|
Dynamically creating an ActiveX on a WPF/Windows .Net app
Tue, 26 Aug 2008 16:29:50 +0200
Hi there,
I have problems creating the Windows Media player ActiveX using this C# code
in a Windows Form project:
Type objType = Type.GetTypeFromProgID("AxWMPLib,
AxWindowsMediaPlayer");
oStibil = Activator.CreateInstance(obj);
Of course, I didn't reference the COM component in my .Net p ...
|
Decryption
Mon, 25 Aug 2008 15:28:55 -0700 (PDT)
Hi All,
I am trying to take a string that has been encrypted and decrypt it.
Here is the string: MMP61ubfQt4=
The following code runs, but the result is an empty string at the
end. Can anyone see what I am doing wrong?
Thanks,
Jeff
Public Shared Function decryptUser(ByVal userName As Strin ...
|
ModelUIElement3D PreviewMouseDown Outer/Inner Object
Mon, 25 Aug 2008 12:14:19 -0700
Let's say I have 2 cubes; "OuterCube" and "InnerCube". Both are
ModelUIElement3D objects. The inner one is .8 scaled on each axis compared to
the outer cube which makes it the inner cube. The outer has a rather
translucent material so you can see through it easily. Both InnerCube as well
as OuterCube both ha ...
|
|
|
Directory.GetCurrentDirectory()
Mon, 25 Aug 2008 07:37:16 -0700 (PDT)
The documentation for ?Directory.GetCurrentDirectory()? states:
Gets the current working directory of the application.
My problem is that I am not sure what that means.
1) What does the current directory represents?
2) I this value set by Windows when a process starts?
3) Is this value set once by Windows ...
|
Time Line Display of Data
Mon, 25 Aug 2008 06:48:02 -0700
We're looking at building a scheduleing app using ASP.NET for the reporting
aspect of it. The front end will be an Access database connected to SQLServer
which will serve up the data via ASP.NET everywhich way you can think of.
I know that there are ways to dispaly DB data in the typical row column
format, ...
|
Auto refresh paretn window
Mon, 25 Aug 2008 05:38:01 -0700
How to autorefresh parent window after closing child window?..
I've used window.opener.location = window.opener.location;
But it's not working..how to do it??? ...
|