Sorry for my way of representing my problem. I realized that I was wrong and I did not have to rely on you for the whole thing. Sorry again. But actually I think that the code is using frames for dividing the page and I did not know how to deal with that.
Menhal
Posts
-
Help me in this script -
Help me in this scriptHave a look to the following script: http://files-upload.com/files/638449/Script.rar[^] It is generated automatically by Microsoft Visio. Open the HTML file with the browser and you will see a map with some control in the left. The control panel could be navigated to be hidden or shown. I want the control panel to be hidden by default. Could any body please help me and see if you can change something in the code to do so. Regards
-
Network ProgramingSorry for links. It is just returning the number 37 that corresponds to '%'.
-
Network ProgramingHere is what you asked for: http://www.2shared.com/download/2461789/a450daf4/1\_online.GIF?tsid=20071104-234241-13ded5b3 http://www.2shared.com/download/2461798/ca4cdb23/2\_online.GIF?tsid=20071104-234811-3de5a56d http://www.2shared.com/download/2461800/1e09af65/3\_online.GIF?tsid=20071104-234912-843fd538 Thanks...
-
Network ProgramingGreetings for all, I have a problem with connecting to a BXR-5000 router through Telnet using C#. I used the following code to connect successfully to Cisco routers without any problem: -------------------------------------------------------------------------------------------- IPEndPoint remoteEP = new IPEndPoint(IPAddress.Parse(ipAddress), port); Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); socket.Connect(remoteEP); NetworkStream stream = new NetworkStream(socket); StreamReader reader = new StreamReader(stream); StreamWriter writer = new StreamWriter(stream); Console.WriteLine(writer.read().ToString()); Console.WriteLine(writer.read().ToString()); Console.WriteLine(writer.read().ToString()); Console.WriteLine(writer.read().ToString()); -------------------------------------------------------------------------------------------- But, when connecting to a BXR router, the character ‘%’ is returned and I can not read or write any thing. Could you please help me. I am about to finish my project but this problem stoped me and I do not know how to deal with. Thanks in deep... Menhal
-
Visio automation via C#Hi, I want to work on developing Visio drawings using the C# language. But I noticed that there is no documentation for doing that. I searched the internet and I found few things that give me nothing in my project. I want to draw some boxes, change their color and connect them together. Please if you can help me, I will appreciate youe effort. Thanks