|
You can't do this. Starting an interactive process remotely is not allowed by Security, and for VERY good reasons.
|
|
|
|
|
It's amazing how some people just don't think of the security ramifications when asking these kind of questions.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
"Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
|
|
|
|
|
Dave comment is important, but you may want to play with the interact with Desktop option of your service.
-- modified
- not sure if it will work in a remote scenario, but it is worth trying it out.
|
|
|
|
|
It still won't launch an app on a remote machine so the user can see it.
|
|
|
|
|
i just dont know yet how you did it.but in case you were running/invoking the windows application from onStart()method of the windows service,use the MMConsole,navigate to services,look for the name of your windows service->properties,logon tab,check the checkbox--allow service to interact with Desktop.ope it works
was wondering if you culd help with your code for this application(both winform and winservice)
|
|
|
|
|
how can i include animations in Visual Studio .net2003(GUI).help me in this regard
|
|
|
|
|
hrmm, this is a little open-ended. What type of animation are you referring to? Does the animation relate to events in the application? Need more info to advise.
|
|
|
|
|
You can use timers and then invalidate the form with the new graphic afterwards.
Regards,
Thomas Stockwell
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
Visit my Blog
|
|
|
|
|
Hi
My company has licensed Dotfuscator pro, so we have to obfuscate our releases using it. However, after a couple of weeks of using it, I can say it's a piece of ...(you know what). There is no reliable control about obfuscating and removing processes, tool hangs up itself or crashes VS. There is even no validation of assembly after obfuscation, which can result in some strange errors in releases.
I have seen that there are many obfuscators on the market right now, but have no time to evaluate all of them.
So, please - could anyone recommend something?
Regards
H.
ps: What I really need is obfuscation, linkng and removing unneeded stuff in .NET 2.0 winforms apps and services, with nHibernate layer
thanx
H.
|
|
|
|
|
I've looked at Skater .NET Obfuscator by RustemSoft in the past, and it works well. I've had it crash Reflector when trying to pry at my obfuscated code.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
"Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
|
|
|
|
|
Father class how to use the special sub-category type (such as the sub-class form TableAdapter of a table), the current idea is traversal all the things on the form(such as traversing all controls on the sub-form), if found what I need, I want to transform its type into I want. But now what trouble me is i could not get the type neither trying to change the object into the type I needed nor using reflection to get the type. Thanks a lot.
Code is as follows:
private void findcontrol(Control.ControlCollection controls)
{
foreach (Control ctrl in controls)
{
if (ctrl.GetType().Name == "XXTableAdapter")
{
}
findcontrol(ctrl.Controls);
}
}
|
|
|
|
|
You posted this same vague question several times, please don't do that
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
"Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
|
|
|
|
|
sorry,because i don`t know which part this question really belongs to.
|
|
|
|
|
I've seen stuff out there that embed lists and stuff onto your desktop and I was wondering how to do that in .net. Has anybody done that before?
|
|
|
|
|
I don't quite know what you want to achieve. The XP desktop is just a folder.
Bob
Ashfield Consultants Ltd
|
|
|
|
|
What's the best way to give a .NET app a GUI that is cross-platform for PC and Mac? Mono sounded like the easiest solution, but its Windows.Forms implementation turned out to not work well on OS X, so I'm back to square one.
|
|
|
|
|
Not sure about OS X, but I think that the best solution is to use WPF in XBAP or Silverlight. When Silverlight 2 comes fully out, it may be more potential. In both cases you'll have a quite rich UI which is hosted on internet explorer or similar.
However, I'm not very familiar with OS X, so this is more intuition than knowledge.
Mika
|
|
|
|
|
Your summary appears to be pretty accurate.
|
|
|
|
|
|
Mika Wendelius wrote: WPF in XBAP or Silverlight
Moonlight is Mono's version of Silverlight.
AFAIK they currently don't plan to support the full WPF framework.
|
|
|
|
|
Thanks, good info!
I also (sadly) believe that full WPF won't be included in Silverlight 2 and also not full .Net Framework. Mainly I miss datasets, but perhaps in next versions.
At some point I must put some effort on moonlight and get to know it. If you have knowledge of it, could you consider writing an article or two about differences between moonlight and silverlight? A quick search on CP found no articles concerning moonlight.
|
|
|
|
|
Thanks for the info! I sounds like your suggestions might turn my desktop app into a browser app. Does anyone know what path would be taken for a desktop app? I'm willing to do some GUI recoding.
|
|
|
|
|
|
I'll second that. It was the third WPF book I bought, and it's by far the best. The Nathan and Sells books aren't bad, but this one is streets ahead - so much so that I also bought the e-book version.
|
|
|
|
|
Good answer. Right on the mark.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
"Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
|
|
|
|