February 20th, 2009 06:46 AM
Well thanks I finally got it to work; but creating a adding the libraries in the project options through DevC++ IDE.
February 19th, 2009 05:27 AM
I am using DevC++ as compiler on Windows 2000.
I tried the code from Matlab's documentation to use matlab functions in C, but its giving an compile time error.
[Linker error] undefined...
February 18th, 2009 05:28 AM
I was going to load a bitmap image that is 8-bit BMP and grayscale.
Need some help about the format specially in case of grayscale.
I got the HeaderInfo but no clue how to use the data, that is,...
December 27th, 2007 12:24 PM
Article : Toggle Network Connections
December 26th, 2007 09:33 AM
As you added items into the listBox when SelectedIndexChanged events is triggerred, that is not going to trigger until you have items in listbox and select these items.
December 22nd, 2007 11:27 AM
change any value in default settings at runtime
Properties.Settings.Default.UserName = "NewUserName";
call Save method to save the changes
Properties.Settings.Default.Save();
December 21st, 2007 01:53 PM
Try Properties.Settings in .net 2.0.
December 21st, 2007 01:07 PM
Use dataView to get only filtered rows from books datatable.
Dim dv As New DataView(BooktableTable, "BookName='" & booksearchtxtb.Text.Trim & "'", "BookID", DataViewRowState.CurrentRows)Simply bind...
December 21st, 2007 11:54 AM
Sample using hashtable
private void Form1_Load_1(object sender, System.EventArgs e)
{
Hashtable h = new Hashtable();
h.Add(1, new Student("anis", "khan"));
h.Add(10, new...
December 21st, 2007 10:52 AM
Perform search using datatables Select() method.
Dim foundRows() As DataRow = BooktableTable.Select("BookName='" & booksearchtxtb.Text.Trim & "'")
If (foundRows.Length >...
December 21st, 2007 10:28 AM
Declare and initialize backgroundWorker control
System.ComponentModel.BackgroundWorker BackgroundWorker1;
private void Form1_Load(object sender, System.EventArgs e)
{
BackgroundWorker1 =...
November 24th, 2007 07:45 AM
Checkout DataGridView UserAddedRow event.
October 18th, 2007 10:54 AM
October 17th, 2007 11:57 AM
Constants can either be declared inside a class or a function. If inside a function, the constant can only be used inside that function. If in a class the constant can be used from anywhere (if...