 |
|
 |
hi,
How we can wriet program in C#.Net like encarta?
I want to arrange some object like text, link, image and video in C#.Net application (an article viewer program).
In fact I want my application work like webbrowser.
thanks. afrashtehmohammad@yahoo.co.uk
|
|
|
|
 |
|
 |
Hi Hari
thank for code, works great.
could this code be changed to send an array from one machine to another e.g
array(0) = 23
array(1) = 56
array(2) = 15
as i want to be able to send this information and then display an AxChartSpace1.Charts on the remote machine
i can show this chart on the master machine, but would be great if this could be done on remote machine
just having trouble finding a way to send the array, as the values are not alway the same
cheer dave
|
|
|
|
 |
|
 |
servox wrote: Hi Hari
thank for code, works great.
Thanks!!!
servox wrote: could this code be changed to send an array from one machine to another
Yes you can!
As this code is used to send data in string format.To transfer objects like array you have to convert it into string format.
array data object (List list)-> byte array (byteData[])-> string (str)
AT SENDING END
//serialize list object into byte array
string str = System.Text.ASCIIEncoding.ASCII.GetString(byteData);
//now send this string str
AT RECEIVING END
byte[] byteData = ASCIIEncoding.UTF8.GetBytes(str);
//deserialize byte array into list object.
|
|
|
|
 |
|
 |
Sysinternal did this a long time ago without the needs to install a client....
PsShutdown v2.52[^]
|
|
|
|
 |
|
 |
You are right. But my objective is to make sysinternal independent utility in .NET, which also describes Remote connection (for any purpose) and WMI usage under .NET environment.
|
|
|
|
 |
|
 |
i already install the cilent on the pc and it show error does not response from cilent pc.
need to do anything setting on client pc ?
|
|
|
|
 |
|
 |
Follow these steps while installing app on the system
1) Make sure that system are fully connected; (use ping ulility)
2) Check firewall settings (should allow incoming connections at port number for listening)
3) Change client port address if some other application using that one
4) Make sure that server connected with that same port address as client is having
|
|
|
|
 |
|
 |
Hi,
Wishing u a happy new year
in that code u can do logoff, shutdown, and rebooting; if we want to see clients desktop, if we want to disable clients USB drives:such as pen drive etc.
what we can do, we write new code or changes in this code. please send it to me if u knows.
|
|
|
|
 |
|
 |
happyankitsanghvi wrote: Wishing u a happy new year
Thanks Ankit and same to u and ur family.
happyankitsanghvi wrote: we want to disable clients USB drives:such as pen drive etc.
what we can do, we write new code or changes in this code.
yes. write a new "code" block for disabling USB and then put that "code" on Remote ClientX. just pass one more parameter to ClientX from ServerX name it "DISABLE USB" or as you wish. Thread at ClientX will be started and will execute your "code" at that machine.
|
|
|
|
 |
|
 |
Hello there can give how can use your code Out LocalNetwork
I mean Used it Over Intranet Any Help Thanks .
|
|
|
|
 |
|
 |
Hi Mr Hari,
My name is andy, i'm a student currently doing a project remote access to server. I would like to ask you a question, is it possible to remote start up a server when server is down ? using vb.net 2008.
|
|
|
|
 |
|
 |
kuniyo wrote: server is down ?
ServerX? yes, but one question arises how will you give command to system so that application is invoked. simple answer is you have to make another application acts as CommandControl listening off/on activities if main ServerX is down. It depends on port address and process Id. Try this idea.
|
|
|
|
 |
|
 |
Hi,
Could you advise on how I would go about shutting down around 1000 XP PCs at my college. I have experience of VB 2005 and have been given the task to make sure 90% of our computers shutdown owing to huge electric bill.
We also have around 40 VLANS in place.
Any advice/guidence on how to approach this is much appreciated.
Neil
jono
|
|
|
|
 |
|
 |
Through application building one thing is that on each system an application could be run which listens for SHUTDOWN command from Server. SERVER can have list of 1000 pc list. loop will be perform for each pc so that your pcs will be shutdown.
to save that much of bill, at least you will be given a step wise commands for shutting down. like 40% and 50%.
|
|
|
|
 |
|
 |
hi;
i am doing a home automation project, through which i am controling home appliances with a PC(Serial port[microcontroller circuitry]), i want the Pc at home to be accessed remotely so that i can remotely send on/off commands on the serial port of the pc at home so how can it be done?
fahad
|
|
|
|
 |
|
 |
fahadi86 wrote: to be accessed remotely so that i can remotely send on/off commands
you can use remote desktop softwares (like http://www.teamviewer.com/download/index.aspx[^]) that can be accessed through internet from anywhere and when controlling Home Pc you can do anything you want as you do at Home.
|
|
|
|
 |
|
 |
hi hari om ,thank's for this code
|
|
|
|
 |
|
 |
hi mayank... most welcome
|
|
|
|
 |
|
 |
I m student of MCA
and I m doing project on network administration
like creating,editing,deleting user a/c etc
can u suggest me language in .net.
and how to start this project.
thanx in advance.
|
|
|
|
 |
|
 |
Hi!
Before you move on to creating such applications, you should have very deep knowledge of Windows Directory Structure and WMIs.
Creating User:http://www.eggheadcafe.com/community/aspnet/2/10012378/create-a-local-windows-us.aspx[^]
WMI provides various classes to make interaction with Windows configurations. There will find classes for networks also.
You can use any .NET language where you find yourself comfortable like C#, VB. But I think C#.NET is much more easy and powerful than others.
|
|
|
|
 |
|
|
 |
|
 |
You are most welcome Gorpor!
|
|
|
|
 |
|
 |
In vb.net why we use ".net" name??????????????????
means why we put .net after vb??????
|
|
|
|
 |
|
 |
as per our previous versions like c#,vb,etc. That time we are not able to make powerfull Distributed Application (.NET Remoting, Web services). this word is related to NETwork(NET). all languages are capable of making such type of applications. Hence with suffix .NET
|
|
|
|
 |
|
 |
sir,
please give me explaination about shutdown module.why you are choose vb.net in shutdown.what difference between vb or java coding use in shutdown module and vb.net coding.
please clear me the doubt sir.
suja
|
|
|
|
 |