blah blah blah is here! blah blah » Close

0
votes
1 answers

RUnning Perl script using C#

I have this Perl Script which returns a number. I want to run this script from a C# program and use script's returned value in C# program. Is that possible to do so?

0
votes
1 answers

Export files

Hi, I am doing a project using C# along with ASP.Net. I want to have following feature. On a web-page, there should be a button named 'Export' (i know how do to this) when clicked on the button, i want it to list files, let user sel ...

0
votes
1 answers

hashtable sorting

Hi, Can i sort hashtable? If i have following hash.. goodman 23 youthen 94 Abby 45 dyugen 12 What if i want to sort it by keys in alphabetical order ? How do i do that?

0
votes
1 answers

How do i set file security

using System.Security.Permissions.FileIOPermissionAcees.Append?

0
votes
1 answers

writing to file and filesecurity

Hi I want to do following in my program, if file exists, then at the end append the new text I pass if it does not, create a new file and write the text i pass Now I have a file as follow and if it does not exi ...

0
votes
1 answers

smilar to strstr() in C++

Hi I am looking for a string operation/function in C# which is similar to strstr() in C++. Basically i want to see if a particular substring exists in a string.

0
votes
1 answers

get number of entry for each Key in Hashtable

I want to find ho wmany values each key has? How do i do that?

0
votes
1 answers

hashtable key in alphabetical order

IS it possible to arrange data in hash table according to alphabets for keys....

0
votes
1 answers

scrollable table

I have my aspx.cs code as follow which brings up table on a button click public void onClick(object sender, System.EventArgs e) { Table oTable = new Table(); Table Table1 = new Table(); //oTable //oTable.Cel ...

0
votes
1 answers

writing hashtable

I have a hash table with stored data in there. 1) How do i write hash table info to Excelfile (if that's nto possible, textfile will do) 2) Also, how do i write same info to the webpage? (using ASP.Net) (either from the file we just wrot ...

0
votes
1 answers

what is difference

between .aspx.cs and .cs files? SO i know that file.aspx is HTML file what is file.aspx.cs and what it file.cs

0
votes
1 answers

Get rid of MemoryAnalysis

I am not sure what i clicked on. SO everytime i run the program (with or without debugger) DevPartner Memory Analysis window come up. I can close it afterward but how do i make sure that it does nto pop up everythime i run the program? im ...

0
votes
1 answers

Can i create hash of pointers?

I have data in following format: BTUcu BTU401 3457 BTU567 684 BTU402 1029 FMYdi FMY303 459 FMY320 5678 FMY321 980 FMY345 6788 EPInc EPI209 4789 EPI450 678 So now you c ...

0
votes
1 answers

Returning and assigning array

Hi, Can i return an array (of strings or any) from a function and assign it to another array(same type as return) after function call? _r

0
votes
1 answers

C# link list, dynamic array? hash tabel?

Hi I am readign a text file and tokenizing it. I need to store data in some kind of dynamic structure. Data i m reading are in a pair...1:1 relation, for example: Name of the person and date of birth. Length of the file might vary e ...

Feedback