Forum: C# Jan 9th, 2009 |
| Replies: 3 Views: 384 Yo dude, maybe something like this will work , it works for me ...
Application.DoEvents();
listView1.Refresh(); |
Forum: C# Jan 7th, 2009 |
| Replies: 16 Views: 2,709 Hahaha, i had the same problem last year, welcome to the world of writing your own controls m friend ... |
Forum: C# Jan 6th, 2009 |
| Replies: 5 Views: 3,373 Yo dude, you can always just refresh the connection, you don't need to close your form,
i take it you want something like this
using System.Data.SqlClient;
namespace TestDummyTWO
{ |
Forum: C# Aug 26th, 2008 |
| Replies: 5 Views: 4,386 private void button1_Click(object sender, EventArgs e)
{
Panel1.hide();
panel2.hide();
panel3.hide();
//BUT
Panel 4.show();
} |
Forum: C# Aug 26th, 2008 |
| Replies: 5 Views: 4,386 Yeah sorry man, use delphi... it works .... but not in visual studio but i did that with panels
you can use panels to act as tabs
The oviously on button_click event you just hide all of them... |
Forum: C# Aug 26th, 2008 |
| Replies: 15 Views: 3,627 Hey dude, hahaha, welcome to the confusion club, heres what you'll do ...
private void Form1_MouseMove(object sender, MouseEventArgs e)
{
int X = MousePosition.X;
... |