Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
X

xrado

@xrado
About
Posts
40
Topics
23
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • datagrid invoke and tablestyles
    X xrado

    hi, i dont know if this is still a question of table styles, look what i get first invoke ..ok invoke again ??? hope to hear from you again bye rado.

    C# question

  • datagrid invoke and tablestyles
    X xrado

    ok i solved that, but what if i invoke more times. First time its working ok, when i do it second time, datagrid get screwed and starts to blink. im trying to use threads to update datagrid form dataset. and suggestions

    C# question

  • datagrid invoke and tablestyles
    X xrado

    how do i bind tablestyle back to datatable after datagrid invoke. when im updating datagrid with invoke .. private void UpdateGrid(DataSet table) { dataGrid1.DataSource=table.Tables["data"]; } dataGrid1.Invoke(new UpdateGridCallback(this.UpdateGrid), new object[]{some_data_set}); ..i lose datagrid style which is already defined. bye -- modified at 3:56 Friday 23rd September, 2005

    C# question

  • datagrid firstvisiblerow
    X xrado

    i found ... :) FieldInfo fi = typeof(DataGrid).GetField("firstVisibleRow",BindingFlags.NonPublic | BindingFlags.Instance); int rownum = Convert.ToInt32(fi.GetValue(dataGrid1));

    C# database question

  • datagrid firstvisiblerow
    X xrado

    how do i get the index of first visible row in datagrid :confused: bye

    C# database question

  • datagrid update and scrolling
    X xrado

    is there a way to update datagrid from dataset, with out loosing current datagrid view (scroll position) and cell position. im only updating row data, not insering new row. and im not doing it directly to datagrid.

    C# announcement

  • writing to ms word document bookmarks
    X xrado

    can find article how to do it..can you help me

    C# help tutorial

  • richtextbox appendtext bold
    X xrado

    how do i appendtext to richtextbox in bold? bye

    C# question

  • dataview tablestyle
    X xrado

    how do i map tablestyle to dataview? ..its easy with dataset table names, or how do i fill dataset table with dataview.. bye

    C# question

  • join tables form two odbc datasources
    X xrado

    is there a way to join two tables from two diffrent odbc data sources (or joining to dataset tables) ..any ideas?

    Database question

  • ProcessCmdKey invoke app method
    X xrado

    i overrided ProcessCmdKey to capture enter in datagrid and its working. now how do i catpure this keypress on application level when enter is pressed. (or how do i send signal form overrided ProcessCmdKey in mydatagrid class to application...i want to run method on that event). need help ..please bye

    C# help question

  • DataGrid Row Select
    X xrado

    add to datagrid mouse click event handler dataGrid.Select(dataGrid.CurrentCell.RowNumber);

    C# question css help

  • help me override keypress in datagrid
    X xrado

    when i press enter i want to select the whole row in datagrid so i added .... this.dataGrid1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.DataGrid1KeyPress); .... void DataGrid1KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e) { if (e.KeyChar == (char)Keys.Enter) dataGrid1.Select(dataGrid1.CurrentCell.RowNumber); } ..and i overrided onkeypress in mydatagrid with protected override void OnKeyPress(KeyPressEventArgs e) { base.OnKeyPress (e); } but not working...what is missing??

    C# question help

  • display datagrid row on textBoxes
    X xrado

    directly form datagrid textBox.Text= dataGrid1[rowNum, collNum].ToString(); or directly from dataset textBox.Text = ds.Tables["table"].Rows[rowNum]["coll_name"].ToString(); add it to double event on datagrid

    C# csharp question visual-studio help

  • dataset to array
    X xrado

    how do fill single dimension array with dataset or how do i fill an array directly from odbcDataAdapter

    C# data-structures question

  • color specific rows in datagrid
    X xrado

    is there a simple way to change background color of the row, based on its value...(based on cell value in same row)

    C#

  • add method to control
    X xrado

    please:(

    C# css question

  • add method to control
    X xrado

    i would like add ScrollToRow method to datagrid can you please show me how do i do this i found this code: public void ScrollToRow(int theRow) { // // Expose the protected GridVScrolled method allowing you // to programmatically scroll the grid to a particular row. // if (DataSource != null) { GridVScrolled(this, new ScrollEventArgs(ScrollEventType.LargeIncrement, theRow)); } }

    C# css question

  • postgresql odbc
    X xrado

    has anyone got postgres and odbc working? im trying the whole day...the code seem ok (no error reporting)..but i cant get or put any data to database. im runnig postgres on linux server. i tried from pgAdmin with same SQL command and working..mhh..any idea? (i have postgresql odbc clinet installed) string pgConnectionString = "DRIVER={PostgreSQL};" + "SERVER=192.168.1.100;" + "DATABASE=test;" + "UID=postgres;" + "PASSWORD=postgres;"; OdbcConnection pgConn = new OdbcConnection(pgConnectionString); try { pgConn.Open(); } catch (OdbcException eee) { error-handing(eee) } string SQL = "INSERT INTO data VALUES(default, '123', '1qwer', 'qwrwrw')"; OdbcDataAdapter myAdapter = new OdbcDataAdapter(SQL,pgConn); pgConn.Close();

    C# postgresql database sysadmin linux help

  • Editing problem in Datagrid
    X xrado

    im also playing with postgres odbc, but not working. have you found where is the problem??

    C# postgresql csharp asp-net database sysadmin
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups