No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
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 : … | |
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 … | |
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 = … | |
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 … | |
Re: hey winbatch! m new to using threads and me too facing the same problem.. could you put some light onto the solution if you got any.. | |
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 = … | |
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 |
The End.