Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 21
Member Avatar for reaven

So this is what I want to be able to acomplish. I have a form where you can give permission to network folders to users in a Active Directory. I want to be able to make the app revert those permissions based on a date. I was thinking of adding …

Member Avatar for reaven
0
110
Member Avatar for nesa24casa

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 …

Member Avatar for nesa24casa
0
176
Member Avatar for reaven

Hi am trying to make a simple application that write and read from and to a text file the problem is that i want to be able to aerch in the text file for an specific line. the text file is a list of words with a meaning each word, …

Member Avatar for Comatose
0
238
Member Avatar for reaven

[code=c#]StreamReader reader = File.OpenText("mystations.txt"); string line = reader.ReadLine(); while (line != null) { // string[] stationtxt = line.Split('\t'); string name = line.Split('\t')[0]; string url = line.Split('\t')[1]; string desc = line.Split('\t')[2]; Image img = Image.FromFile("c:/pictures/"+ name + ".jpg"); line = reader.ReadLine(); dgLogo.Image = new Bitmap(img); dataGridView1.Rows.Add(name, url, desc, img); //(stationtxt); } …

Member Avatar for reaven
0
392
Member Avatar for reaven

I have an application that i want to run a batch file from it all i get is the flashing CMD windows but is not running. at one time I get it to run but dont know what happen start modyfying other things and stop working. what i really want …

Member Avatar for reaven
0
190