Jump to content

Search the Community

Showing results for tags 'stringgrid'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • uniGUI Public
    • Announcements
    • General
    • Feature Requests
    • Installation
    • Deployment
    • Other Platforms
  • Licensing
    • Licensing
    • Ordering uniGUI
  • Bug Reports
    • Active Reports
    • Closed Reports
    • Old Bug Reports
  • uniGUI Development
    • General Development
    • uniGUI Releases & Roadmaps
    • Utilities
  • Mobile Platform
    • uniGUI Mobile
    • Mobile Browsers
  • Users Area
    • Sample Projects
    • Components and Code Samples
    • Third Party Components
  • Non-English
    • Non-English
  • Miscellaneous
    • Hosting
    • Server Security
    • Jobs

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 14 results

  1. How to set width of columns to automaticly fit the StringGrid. I tried function witch worked for me on DBGrid component but it doesn't work here. function columnresize(ct, column, width, eOpts) { if (column.fedit) { column.fedit.setWidth(width - 2) } } please help. Best regards
  2. I have a report that I set up on StringGrid, because it got better on it with the manipulation of cores and data by cells, I have 2 first columns that already hide them by passing or colWidth: = 0; however, I need to do this in 2 lines as well, like the first two lines, they use their value for account reports, but they should not be visible to the user, so how can you hide these two lines? A single alternative that is done for now changes the value of the blank, but it remains two lines of the string drop.
  3. MOGSY

    TUniStringGrid

    Hi How can we change the column width dynamicaly, depending on the content of the first row. Is it possible to hide a column depending on data in the column? if uniStringGrid1.Cells[thisColumn, 1] = 'Test Data' then begin strgCars.Columns[thisColumn].Width := 0 else strgCars.Columns[thisColumn].Width := 100;
  4. I have attached a sample project. Essentially it has a StringGrid which has goRowSelect turn on and has a column which is updated by a Timer every second. I am using BeginUpdate and EndUpdate inside the OnTimer event. What seems to be happening is if you highlight a row and the timer updates the cells when the EndUpdate has finished the StringGrid row position goes back to the top of the grid, rather than staying at the row you selected. If I then try and scroll down the stringgrid the position gets reset to the top again after the timer has finished. If I comment out the BeginUpdate and EndUpdate this doesn't happen and the row selector stay at the last selected row rather than move to the top of the grid. StringGrid.zip
  5. Is there a way of auto sizing columns in a UniStringGrid so that the width of the column is based on the widest cell text item in the column?
  6. I had a topic on TListView and no replies I am in dire need to have a list shown to the user and to let the user "checkmark" the items they want. THEN I have a button that processes all the items that are checkmarked. How to do this? I know that in the stringgrid, I can click on several items to select "multiple" items, BUT, if the user then accidentally clicks on another item, then it messes up the selections. They are too fragile and the user can mess up the selections without realizing it. So, a checkbox is more intuitive and you can easily see what's checked and what's not checked. I've looked long and hard and I don't see anything for this. Did I miss something cool? Seems to me that a checkbox feature in some sort of list would be a key feature. Since the items are manually generated, I can't use any of the DB controls. Thanks Davie
  7. How can I change StringGrid height dynamically depending on height of rows. I'm trying to get height of each row, but I allways get 0. for i := 0 to RowCount - 1 do inc(MyHeight, RowHeights[i]); end; At the end MyHeight is allways 0. So how can I get StringGrid actual rows height so there wouldn't have to be scroller inside.
  8. Hello, would prevent the scroll of fixed cells that I set in StringGrid, how I do it? for example: StringGrid1.FixedCols: = 1; StringGrid1.FixedRows: = 1; How to prevent scroll of these cells? because when I have many cells would be important for me they stay fixed, not only the color but also the behavior! Leandro
  9. Hello, Can somebody can tell me how to do a text wrapping in StringGrid cell? Is it even possible? Desired result: http://i.stack.imgur.com/phXGU.png
  10. Picture link . http://i58.tinypic.com/2wp5rg9.jpg pls help me.
  11. Morning! How do I hide the scrollBar of a StringGrid? Hide vertical and horizontal. Thanks.
  12. I have an issue with the ColCount property of the stringgrid. It appears that I set it to "8" in the object inspector<design time> and then when I run the program, I get an index out of range type of error. When I set it during RUN-TIME, then I have no problem. Is this the way it's supposed to work? Davie
  13. At first, I wanted a listview to show a bunch of rows from my array of info. It appeared there is NO listview equivalent. So, I tried StringGrid. The top row and left row (fixed rows) do not stay on the screen when I scroll around. I saw where this was normal behaviour. Is there a chance of fixing this? Also, in the design mode, I could change the column widths, but when I run it in web mode, the columns are all the same width and CAN NOT be resized. Very wierd. Is this also normal behaviour? NOTE: If in design mode, if I go to "view form as text" and then switch back to "view as form", ALL the column width adjustments are lost. This is not intuitive... am I missing something? The listview is the real solution for me so that I can RIGHT JUSTIFY certain columns that contain money values. Any thoughts? Davie
  14. If I use a UniStringGrid, in web mode I can't resize the column's with. In application mode it works.
×
×
  • Create New...