CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Andy Tacker

Page 1 of 74 1 2 3 4

Search: Search took 0.28 seconds.

  1. Replies
    26
    Views
    3,512

    Re: Merry Christmas!

    :)
  2. Replies
    2
    Views
    1,059

    Re: Trying to catch arrows keydown events

    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))
    ...
  3. Replies
    19
    Views
    3,084

    Re: Global Variables

    public class proggi
    {
    static Connection m_Conn;
    public static Connection GetConnection()
    {
    return m_Conn;
    }
    }
  4. Replies
    5
    Views
    1,426

    Re: Setting selected item in a list box

    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...
  5. Replies
    26
    Views
    3,512

    Re: Merry Christmas!

    Merry Christmas Folks!
  6. Replies
    6
    Views
    1,047

    Re: get an Int from a byte array

    look for Encoding class, hansipet!
  7. Replies
    4
    Views
    5,872

    Re: Getting index of a column in a ListView

    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...
  8. Replies
    4
    Views
    5,872

    Re: Getting index of a column in a ListView

    int iCurSelIndex = -1;
    foreach (ListViewItem lvi in this.LVClients.SelectedItems)
    foreach (ListViewItem.ListViewSubItem lvisub in lvi.Subitems)
    if (lvisub.Text == "myText")
    {...
  9. Replies
    4
    Views
    5,625

    Re: Control visible does not work

    may be they are located inside another control, and the property of that control is set to invisible?
  10. Replies
    5
    Views
    1,523

    Re: I have a big timezone problem!

    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...
  11. Replies
    3
    Views
    6,049

    Re: MenuItem.Popup == ToolStripMenuItem.???

    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;...
  12. Replies
    17
    Views
    1,474

    Re: Happy Birthday Andy Tacker

    Thanks to everyone! i am a bit late to answer... but that's ok.
  13. Replies
    4
    Views
    1,393

    Re: connect to nothing?

    eh! coming back to OBEX... take a look at those standards... I think that does for BT and IR... not really sure though...
  14. Replies
    6
    Views
    1,319

    Re: Sharepoint: Archive of news

    please avoid cross posting... I have merged all your threads... and here is the link that might be of interest to you...

    click here
  15. Replies
    1
    Views
    1,227

    Re: DataAdapter problem

    please use CODE tag...
  16. Replies
    7
    Views
    4,822

    Re: Release mode problem

    merged threads! please avoid cross posts...
  17. Replies
    2
    Views
    2,371

    Re: OleDb Date Time insertion Problem

    I usually stick to String version of datetime when i insert data and SQL manipulates the string data to date format...
  18. Replies
    3
    Views
    2,183

    Re: Mod function

    or look at MATH class...
  19. Replies
    2
    Views
    1,039

    Re: device to computer

    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???
  20. Replies
    2
    Views
    1,372

    Re: c++ functions called from c#

    moved to C#
  21. Re: Is it possible to burn the Visual Studio 8.0 cds on to a DVD?

    moved to chit chat...
  22. Re: Game Independent Anti-cheat Project Needs Programmers

    moved to jobs...
  23. Replies
    2
    Views
    1,155

    Re: Seperate Forum for Security ?

    moved to feedback...
  24. Replies
    18
    Views
    3,823

    Re: Context Menu (Send To) Modifiction

    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...
  25. Replies
    3
    Views
    883

    Re: Getting Time & Date

    look for DateTime Class
Results 1 to 25 of 1836
Page 1 of 74 1 2 3 4





Click Here to Expand Forum to Full Width

Featured