December 27th, 2006 04:04 AM
December 27th, 2006 03:50 AM
const int WM_KEYDOWN = 0x100;
const int WM_SYSKEYDOWN = 0x104;
protected override bool ProcessCmdKey(ref Message m, Keys keyCode)
{
if ((m.Msg == WM_KEYDOWN) || (m.Msg == WM_SYSKEYDOWN))
...
December 27th, 2006 03:47 AM
public class proggi
{
static Connection m_Conn;
public static Connection GetConnection()
{
return m_Conn;
}
}
December 27th, 2006 03:40 AM
you need to set the selection mode to "One".
after that you can simply use the selecteditem or selectedindex as Petes said.
to scroll your selection to top, set the "TopIndex" property to the...
December 27th, 2006 03:32 AM
March 15th, 2006 07:40 AM
look for Encoding class, hansipet!
March 15th, 2006 07:38 AM
oops Toruud!
sorry wrong code I thinnk.... this is what you are looking for... most probably....
int iCurSelIndex = -1;
string szColName = string.Empty;
foreach (ListViewItem lvi in...
March 15th, 2006 07:35 AM
int iCurSelIndex = -1;
foreach (ListViewItem lvi in this.LVClients.SelectedItems)
foreach (ListViewItem.ListViewSubItem lvisub in lvi.Subitems)
if (lvisub.Text == "myText")
{...
March 15th, 2006 07:26 AM
may be they are located inside another control, and the property of that control is set to invisible?
March 15th, 2006 07:23 AM
Well, that's really a strange thing. Basically, when you are considering that the timestamp should be the local server time, than you should not get the datetime stamp from client. you should set the...
March 15th, 2006 07:19 AM
hey!
popup is all about displaying the menu. if you want to see which menuitem is clicked, you should set onclick event and check...
ToolStripMenuItem m_ClickItem = (ToolStripMenuItem)sender;...
November 18th, 2005 01:56 AM
Thanks to everyone! i am a bit late to answer... but that's ok.
September 26th, 2005 08:57 AM
eh! coming back to OBEX... take a look at those standards... I think that does for BT and IR... not really sure though...
September 26th, 2005 08:51 AM
please avoid cross posting... I have merged all your threads... and here is the link that might be of interest to you...
click here
September 23rd, 2005 06:50 AM
September 23rd, 2005 06:48 AM
merged threads! please avoid cross posts...
September 20th, 2005 05:48 AM
I usually stick to String version of datetime when i insert data and SQL manipulates the string data to date format...
September 20th, 2005 05:42 AM
September 20th, 2005 05:10 AM
if you have enough rights at the end computer. you can simply type its ipaddress follwed by c$ to get the contents of c drive... and same for others... but why???
September 20th, 2005 04:58 AM
September 20th, 2005 04:49 AM
September 16th, 2005 01:52 AM
September 9th, 2005 02:32 AM
September 8th, 2005 08:19 AM
Jinen, Please tell us about your development language and platform, so that your post is located in the most appropriate forum and you will get more valuable feedback.
dr.Script. please keep an...
September 8th, 2005 08:13 AM