Any suggestions to this notouch app issue?

  • Thread starter Thread starter Flare
  • Start date Start date
F

Flare

Hi

I have developed a little windows forms wich is supposed to be deployed with
NoTouch (smart client) technolgy.

Since a nice GUI is essential for the app i have used transparency to give i
at nice look. But then the framework wrap my nice gui in a standard form!!

Look at this: http://pings.dk/notouchgui.jpg

Any suggestions? I tried this.FormBorderStyle =
System.Windows.Forms.FormBorderStyle.None; after the app has loaded.

But i has no effect. I guess the framework is wrapping another application
around my application. But WHY!. I cant be a security restrcitions since it
does no harm to the client...(i guess?!?)

Hope some have a suggstion to remove it (still using smart client tech...of
course)

Thx in reagards
Anders, Denmark
x-postet in microsoft.public.dotnet.framework,
microsoft.public.dotnet.framework.windowsforms,
microsoft.public.dotnet.languages.csharp
 
I *believe* that is permissions based. Try strong naming your assembly and
giving it higher permissions.
-mike
MVP
 
try setting FormBorderStyle to None and turn off ControlBox, MinimiseBox and
MaximiseBox.
 
Back
Top