No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
10 Posted Topics
Hello, how can i split binary data in sections using Binary or Stream Reader/Writer? 115522330000000000552266968966458788220000115522330000000000453266869966458788220000115522330000000000552266968966458898350000 Example is above There are 3 sections in bin file and each start with same template/header 11552233 Thanks in advance
Hello people, i have made this .bat few years ago and its working fine for changing gateway getaway 192.168.1.1 @echo off netsh interface ip set dns name="Local Area Connection" source=static addr=192.168.1.1 netsh interface ip set address name="Local Area Connection" source=static addr=192.168.1.11 mask=255.255.255.0 gateway=192.168.1.1 gwmetric=0 exit getaway 192.168.1.5 @echo off netsh …
Hello, i have created borderless form with transparent png as bacground image but i have issue. Border edges isnt smooth [image](http://www.tuxmachines.org/images/openoffice_31_antialias.png) Its like in this picture on the left and i need it to be smooth. How can i make it smooth? Thanks in advance
Hello, i am trying to download files and save them in defined name but i am failing WebClient client = new WebClient(); client.DownloadFile(remoteFilename, localFilename); now i have two files links.txt names.txt links.txt site/file1.html site/file2.html names.txt pc phone how can i do this? download file1 and save it as pc download …
Try [SortByInt](http://stackoverflow.com/questions/6424420/how-to-sort-a-list-by-a-integer-stored-in-the-struct-my-list-holds) like struct Highscore { public string Name; public int Score; public string Date; public string DataAsString() { return Name + "," + Score.ToString() + "," + Date; } } var sortedList = yourList.OrderBy(x => x.Score);
using (ZipFile zip = ZipFile.Read(ExistingZipFile)) { foreach (ZipEntry e in zip) { e.Extract(TargetDirectory, true); // overwrite == true } } [OnlineHelp](http://cheeso.members.winisp.net/DotNetZipHelp/frames.htm)
private void button_Click(object sender, EventArgs e) { this.Close(); // or form.Close(); // or Application.Close(); }
Hello, i have issue that i cant solve for some time since i dont fully understand regex. How can i get selected data from table to array? Example class="fb s10" title="Get This Info"> class="fb s10" title="Get That Info"> How can i extract Get This Info Get That Info from selected …
Hello, i have made a code that strips off html tags using regex but i have issue. Now in file i have multiple tabs. example: nesa<tab><tab>pera<tab><tab><tab><tab>nn<tab><tab><tab><tab><tab><tab>kkn how can i remove extra tabs and keep only one tab ? example: nesa<tab>pera<tab>n<tab>kkn Thanks in advance
Hello, how to get all data in .php file Example i have webwebweb.com/work.php?worker=1&shop=52 How can i get **strings in worker to string [] worker strings in shop to string [] shop?** Thanks in advance
The End.
nesa24casa