you'll need to allow the service to interact with desktop How terrible is wisdom when it brings no profit to the wise
spaceus
Posts
-
Starting a process from a Windows Service -
Windows Forms Erroryou need more RAM. Most likely you have som repetion statement that dosn't exit giving you the exception when it has run for some time How terrible is wisdom when it brings no profit to the wise
-
Using designer to fill an ArrayListpublic string Liste { set { liste.Clear(); char[] seps = { ';'}; String[] values = value.Split(seps); liste.AddRange(values); } this seems to solve my problem but is there no other way? How terrible is wisdom when it brings no profit to the wise
-
Using designer to fill an ArrayListWhat I wanna do is to be able to fill an ArrayList from my designer... what I got is this public class WebCustomControl1 : System.Web.UI.WebControls.WebControl { private ArrayList liste = new ArrayList(); . . public ArrayList Liste { set { foreach(string ele in value) { liste.Add(ele); } } get { return liste; } } .... If I fill the Array 'hardcode style' I can see the elements but I can't add new elements in the designer... How terrible is wisdom when it brings no profit to the wise
-
JavaScript + dll howto...I know this is possible, but currently have no time to look into it, so hoping somebody out there will give me the answer ;) What Im wanting to do is to call a .dll from a .js Say I've made some HelloWorld.dll with a hello() system.Console.write("hello") then in a .js want to call this function how do I do this?? function hello(){ var helloDll = new ActiveXObject("HelloWorld"); helloDll.hello(); } Would this work if i put it in system32 folder or something..?? apreciate any help Spaceus How terrible is wisdom when it brings no profit to the wise
-
Winamp - howtothx a bunch just what i was looking for... guess I'm getting lazy ;)
-
Winamp - howtoI'm looking for some documentation on howto manipulate winamp via vb.net I have no knowledge on the area so any help would be appreciated... Isn't there some documentation on the subject if there is where can I find it? How terrible is wisdom when it brings no profit to the wise
-
Treeview and regexI'm new to vb.net and I was wondering if it would be possible to use regex on a treeview? I haven't got any code but at least that makes for a quick read.. what I would like is to be able to traverse a treeview for a regex, then building a new treeview with the nodes found maintaining the original structure of the tree (parent - child) inputs are extremely welcome peace How terrible is wisdom when it brings no profit to the wise