Forum: C# Mar 17th, 2006 |
| Replies: 2 Views: 4,171 Erm sorry... not error messages. Some of my dlls generate some data output that prints to the console output screen (also same as debug output screen). I want to read the console output messages that... |
Forum: C# Mar 15th, 2006 |
| Replies: 2 Views: 4,171 Hi... How do I get output debug messages generated by the debug mode (ie. Start with debugging)? If I can get them, I wish to display them to listbox that I have in the windows form I created. Is... |
Forum: C# Mar 12th, 2006 |
| Replies: 0 Views: 14,990 Hi, all.
I read through an book (Developing Windows Based Applications) by Microsoft Corporation thats fully updated for Microsoft Visual Studio .NET 2003 and came upon the chapter where it... |
Forum: C# Mar 12th, 2006 |
| Replies: 0 Views: 8,016 Hi all...
This is the case:
I have a main parent window, and a child window inside it.
The parent window consists of a menubar, whereby clicking one of its menu item (mnuSave) is supposed to... |
Forum: C# Jan 18th, 2006 |
| Replies: 22 Views: 32,431 Ah icic. Same as what i did. Some errors though... I try solve myself. Its some kind of error I got from last time copy other ppl's mdichild format :P Must learn how he does the mdichild so that I... |
Forum: C# Jan 17th, 2006 |
| Replies: 4 Views: 2,343 Ahahahaha yea f1fan, I would employ u as a personal tutor if I could :P
Thanks for all the advice! Thanks to tayspen too! :) |
Forum: C# Jan 17th, 2006 |
| Replies: 22 Views: 32,431 Sorry... Still not very sure about ur points...
1) In ur code:
internal void LoadDataGrid(parameters)
{
}
The parameters meant what? in my case, I onli filled the datagrid with the data... |
Forum: C# Jan 16th, 2006 |
| Replies: 4 Views: 2,343 Hi all...
I have a query here... Is it possible to open another software application in runtime? My situation here is that I have some .dat files which has the data points for plotting a 2-D... |
Forum: C# Jan 16th, 2006 |
| Replies: 22 Views: 32,431 Hi f1fan. Finally finished with my mid-semester presentation today. Though I forgot quite alot of things, everything went on quite smoothly. I was really glad you solved that datagrid thing for me.... |
Forum: C# Jan 15th, 2006 |
| Replies: 22 Views: 32,431 Erm... If my datagrid is supposed to be inside the child window, and initially empty, and I want a button(button1) inside the Parent window to activate it to fill the table in the datagrid (inside... |
Forum: C# Jan 15th, 2006 |
| Replies: 22 Views: 32,431 Ok... I downloaded his sample and found the TopRow function. Sorry I missed out that part... Anyway, it still didnt work. Not too sure why. Maybe its because he uses oledb? Mine is sourced from dat... |
Forum: C# Jan 14th, 2006 |
| Replies: 22 Views: 32,431 Erm, I am now trying to implement row names to the left of the numbers. I read a website (http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx#q896q), it said the following code is able to do... |
Forum: C# Jan 14th, 2006 |
| Replies: 22 Views: 32,431 Heh really thanks alot, man! Its really a big help when noobs like me gets valuable pointers (like missing the binding of datagrid to the dataset) and suddenly gets the whole program up. Especially... |
Forum: C# Jan 14th, 2006 |
| Replies: 22 Views: 32,431 Oh sorry sorry. Huge miscommunication... hehe...
1) The data is input by the user who keys in some variables that will generate the data in the .dat files in runtime.
2) The data in the .dat... |
Forum: C# Jan 13th, 2006 |
| Replies: 22 Views: 32,431 Erm sorry... I know my data needs to be go into a grid before it makes sense... But the .dat files are generated in runtime. How can I transfer them to a tabulated format (Data table) in runtime as... |
Forum: C# Jan 13th, 2006 |
| Replies: 22 Views: 32,431 Yar... This is the part where I still dun understand... The data in my dat file looks something like this... not sure if its considered tabulated in ur sense...
0.200000000000000 ... |
Forum: C# Jan 13th, 2006 |
| Replies: 7 Views: 5,286 Wow U All are AMAZING PPL!
Thanks a BILLiON! ^^ |
Forum: C# Jan 13th, 2006 |
| Replies: 9 Views: 19,719 Ah.... IcIc... Thats exactly what I need! No wonder it worked perfectly!
Thanks alot! |
Forum: C# Jan 12th, 2006 |
| Replies: 22 Views: 32,431 Hi... thanks for the prompt reply. I am using VS 2003. I always hear ppl talking about binding arrays to datagrid. But what does it mean? My interpretation is as follow:
1) Read the lines from a... |
Forum: C# Jan 12th, 2006 |
| Replies: 22 Views: 32,431 Hi all...
I wish to draw a table showing 3 columns of values and many many rows.
However, i cant seem to find any other functions other than datagrid in the design toolbox interface of C#. And... |
Forum: C# Jan 12th, 2006 |
| Replies: 9 Views: 19,719 Thanks again! May I know what the \\s+ means? Cant seem to find it on the web. |
Forum: C# Jan 12th, 2006 |
| Replies: 7 Views: 5,286 Sorry... I don't get you... u mean change the last line to the following?
From : DrawLinesPointF(sender, (PaintEventArgs) e);
To : DrawLinesPointF(g);
Is this what u mean?
Anyway I tried... |
Forum: C# Jan 11th, 2006 |
| Replies: 7 Views: 5,286 Hi, all...
I wish to call upon the DrawLinesPointF class to draw an array of points for me after I click on a button with design name button1. Upon compilation of my code, there is no error.... |
Forum: C# Jan 11th, 2006 |
| Replies: 9 Views: 19,719 Wow... Thanks alot, rOckbaer! It worked perfectly! I will now try to read them into an array. Any idea how it can be done? Its of two dimensional array, right? |
Forum: C# Jan 9th, 2006 |
| Replies: 9 Views: 19,719 hrm... I understand where the error comes from already. It comes from the spaces before the numbers... which I never put in my question. The actual display is as shown below:
(spaces) ... |
Forum: C# Jan 8th, 2006 |
| Replies: 9 Views: 19,719 Hi all... My first post in this forum... The problem is that of the String.Split method... I cant seem to get the String.Split method to work as I wanted... My objective is to try to read the data... |