Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Member Avatar for anurag.kyal

I was able to generate a graph successfully using the <asp:Chart> in asp .net with c# code behind feature but a hiccup came in because I want one of my axes to represent TIME which it doesnot seem to support. Are there any alternatives or can I do this : …

Member Avatar for khadakbist
0
102
Member Avatar for anurag.kyal

static void Main(string[] args) { string[,] fp = readFilePaths(); OleDbConnection con = new OleDbConnection(); OleDbDataAdapter da; DataSet ds = new DataSet(); con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:/Documents and Settings/kyalanur/Desktop/Nav tool/PCGDataManager.mdb;User ID=;Password=;"; string sq = "SELECT * FROM History"; con.Open(); da = new OleDbDataAdapter(sq, con); da.Fill(ds, "History"); for (int i = 0; i …

Member Avatar for Momerath
0
525
Member Avatar for anurag.kyal

Code: FileInfo fi = new FileInfo("\\intranet.xyx.com\abc\efg\def.txt"); if (!fi.Exists) Console.WriteLine("Doesnt exist!"); Prints doesnt exist whereas this file actually exists. It works fine with files on my computer but. Is the method to access this file(on the intranet) wrong. Infact, the VB code for the same: try Dim dummy As String = …

Member Avatar for anurag.kyal
0
145
Member Avatar for anurag.kyal

All I have to do is take an array of n integers and run p threads to sort equally divided p blocks of the same and finally merge them. There is occuring some problem in my code. If I run the threads one by one, by using pthread_join's before next …

Member Avatar for nezachem
0
170
Member Avatar for winbatch

Hi Guys, So I'm trying to experiment with threads, though I'm running into some problems. Basically I'm trying to create multiple threads, where each thread is passed a different set of data. In my small example below, I'm starting off with a vector<string> of data. Each element of the vector …

Member Avatar for anurag.kyal
1
239
Member Avatar for anurag.kyal

I have a forked child process running which executes a system command killing the child using os.kill(child_pid, SIGKILL) stops the child process but the system process continues ! Can something be done to stop the system process also? A part of the code is something like this: #Child child_pid = …

Member Avatar for jcao219
0
155
Member Avatar for anurag.kyal

Is is possible to check if the execution of a java program from python gives any error during runtime and compile time ? Any help or sample code will be of real help.. Thanks in advance

Member Avatar for Gribouillis
0
82