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

Search:

Type: Posts; User: Crash8308

Search: Search took 0.06 seconds.

  1. WebBrowser control. need to prevent it from closing in a wpf app

    I have a WPF where I am implementing a WebBrowser control and I have a list of objects that when i select them it changes the url binding for the webBrowser control and all is well.

    However, if...
  2. Replies
    1
    Views
    672

    assigning math operators to objects

    I was wondering if there is any way to assign math operators to objects class that I constructed?

    or to construct a math operation from objects. I am coding a Form app that does some pretty...
  3. Replies
    7
    Views
    1,214

    Re: Copy selected text in a checkbox

    you need to have a second event trigger/button to transfer the checked items to do what you want with it.

    that is where the code i gave you comes into play
  4. Re: Need suggestions for optimization of DB query

    +1
  5. Replies
    2
    Views
    1,896

    Re: DatagridView search

    figured it out. this is for a DataGridView with 2 columns, granted you will have to refresh the entire view to get the entire list back but it is a start. It searches the entire grid cell by cell...
  6. Replies
    2
    Views
    1,896

    DatagridView search

    I have a datagridview that is not connected to a data set.

    the assembly I am working with is the iControl for F5 systems, with it i am able to capture server IPs, names, and statuses into a struct...
  7. Replies
    7
    Views
    1,214

    Re: Copy selected text in a checkbox

    this might help:
    private void button2_Click(object sender, EventArgs e)
    {
    string[] checkeditems = new string[checkedListBox1.Items.Count];
    for (int i = 0;...
  8. Replies
    3
    Views
    863

    Re: KeyPress Event Issue

    void button1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
    {
    if (e.KeyChar.Equals((char)13)) //(char)13 = "Retrun/Enter" on English Standard keyboards
    ...
  9. Replies
    3
    Views
    1,644

    Re: C# text input/output

    I wou8ld suggest a SQL CE file and execute a query against it returning the value. XML and Text are fine too but have less options I think.
  10. Re: Need suggestions for optimization of DB query

    Instead of hard-coding queries into your source code you should be executing stored procedures. (mySQL 5.0+ and MSSQL server support stored procedures.)

    that should increase the responsiveness of...
  11. Replies
    3
    Views
    953

    Re: Copy all text in textboxes

    Something like this:

    namespace Plaything
    {
    public partial class Form1 : Form
    {
    public Form1()
    {
    InitializeComponent();
    }
Results 1 to 11 of 11





Click Here to Expand Forum to Full Width

Featured