• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

help Build

Newbie Spellweaver
Joined
Jul 17, 2013
Messages
90
Reaction score
18
Here you go.

If you want to do it yourself just use visual studio 2015 and set the targeted .net framework to 3.5

Right click on the project in VS -> Properties -> Application Tab -> Target Framework -> .NET Framework 3.5

Than compile it.
 

Attachments

  • RemoteConsole.rar
    39.7 KB · Views: 44
Upvote 0
Newbie Spellweaver
Joined
Oct 22, 2013
Messages
75
Reaction score
2
It does not work when there is an error debug mode help fix



lxtopxm - help Build - RaGEZONE Forums
 
Upvote 0
Newbie Spellweaver
Joined
Jul 17, 2013
Messages
90
Reaction score
18
It does not work when there is an error debug mode help fix

Fine here it runs, do not ask me to do anything else with it as your original request just asked for it to be compiled.



It does not work when there is an error debug mode help fix

Just comment those lines out, all it is doing is telling it to set the default list to 0. Should have to do that to at least a few of them, after that it will run.
 

Attachments

  • RemoteConsole2.rar
    39.5 KB · Views: 40
Upvote 0
Newbie Spellweaver
Joined
Oct 22, 2013
Messages
75
Reaction score
2
Help write configuration
xml.Load("cfg/ServerConfig.xml");
XmlNodeList serverNodeList = xml.SelectNodes("/Servers/Server");
if (null != serverNodeList)
{
foreach (XmlNode serverNode in serverNodeList)
{
string name = serverNode.SelectSingleNode("name").InnerText;
string ip = serverNode.SelectSingleNode("ip").InnerText;
string port = serverNode.SelectSingleNode("port").InnerText;
string key = serverNode.SelectSingleNode("key").InnerText;
CenterServer server = new CenterServer();
server.Name = name;
server.Ip = ip;
server.Port = port;
server.Key = key;
serverList.Add(server);
}
}


LoadMailDbCfg();
LoadDBQueryInfo();
}
 
Upvote 0
Newbie Spellweaver
Joined
Jul 17, 2013
Messages
90
Reaction score
18
Just google how to create a XML file and you will have the layout you need to use and all you have to do is rename the elements.
 
Upvote 0
Back
Top