MS Flexgrid Cell Alignment
I am populatiing data into MSFlexgrid. One field is related to Address of the person. A problem is coming now: If the address begins with number like 14,Xyz Street,City-111 111 then it is aligned right but if the address starts with alpabhets say, Shop No. 14A, Xyz street, City - 111 111 then it is left aligned. How can this be rectified?
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Flexgrid Cell Alignment
Is there a way that I can set certain cells to have text aligned to the right and others to be left aligned.
Cell Alignment
I have a flexgrid on one of my forms and I'm trying to align all the values in all of the cells to left justify. The default is left justify string and right justify numbers but I would like to left justify both. Could someone help please. This is what I have but it doesn't work.
Private Sub Format()
DPlanflex.CellAlignment = flexAlignLeftCenter
End Sub
I call this from my form load.
Set A Cell's Text Alignment From Vb App?
How can i set the text alignment for a cell in Excel from my vb app?
Code:
Dim objExcel
Dim objDoc
Set objExcel = CreateObject("Excel.Application")
Set objDoc = objExcel.workbooks.Add("C:myExcelFile.csv")
'Change column width
objExcel.Columns("A:A").ColumnWidth = 5
objExcel. ... ?
Compare String In FlexGrid Cell To Excell Sheet Cell
I have a string in a cell of a flexgrid that I want to compare to a string in an excel sheet cell
I tried doing this:
MsFlexGrid1.Col=0
MsFlexGrid1.Row=0
If MSFlexGrid1.Text = XLSheet3.Cells(3, 1) Then
'Do the stuff I want to do
End If
But it gives me a runtime error and points to this.
Are they of different types? How can I compare these two strings?
Flexgrid Alignment
hi all,
currently i'm using flexgrid to show records from database. i found that if the first character of my records was integer then that records will align to right. but if the first character was char then will align to left.
how can i set the alignment for all the records align to left?
thanks
Alignment In An MS FlexGrid
Gentlemen:
I now need your help to find out how I can center the column headings, and to right-justify the values in a MS Flex-Grid.
Attached is a snapshot of the Calculator with its table at the bottom.
I have tried some coding but it doesn't do anything, such as:
For Row2Fill = 1 To Months
For Col2Fill = 1 To Columns
grdpayments.Row = Row2Fill
grdpayments.Col = Col2Fill
grdpayments.ColAlignment(Col2Fill) = 2
' grdpayments.Text = Format(Payment(1)(Row2Fill, Col2Fill), "Currency")
Next Col2Fill
Next Row2Fill
FlexGrid Alignment
My searches of various forums have shown the top two methods of centering data within flexgrid cells. In my experience, neither of the 'bulk' methods seem to work, and only the last cell by cell methods seem to work.
What am I missing??
Thanks in advance.
With MyFlex
.CellAlignment = flexAlignCenterCenter
.Row = 0
.Col = 0
.RowSel = .Rows - 1
.ColSel = .Cols - 1
.CellAlignment = flexAlignCenterCenter
.TextMatrix(2, 2) = "2,2"
.TextMatrix(3, 3) = 1234
.Row = 3
.Col = 3
.CellAlignment = flexAlignCenterCenter
.Row = 2
.Col = 2
.CellAlignment = flexAlignCenterCenter
End With
Getting Cell Alignment Of A Table In Word
Hi,
I have written a macro, which traverses the table of a word document and outputs the text in particular format to a text file. While doing so i need to retain the look of the table and for which i need to know the aligment of the cells in the table whether centered, left or right aligned.
Is there any means by which this be achieved?
Thanks
Niranjan
Vb6 Text Alignment In Excel Cell
in VB6 the following code does not work.
.Cells(5, 1).horizontalAlignment = xlCenter
Compiler error:
xlCenter
variable not defined
Can this be accomplished in VB6?
Msflexgrid Cell Text Alignment
I would like to use msflexgrid to display information in a VB application. I would like to be able to format the text displayed, but can't find how to do it (if it can be done). I know the text may be formatted when it is the current cell, but I want to format ALL text in all cells. (simple stuff like having all cells use center justification instead of the standard left justification)
Does msflexgrid have that capability?
MSFlexgrid Cell Text Alignment
Hi!
When i try to enter a character which is other than alphabets
NOT ( a-z, A-Z) the text gets right aligned otherwise its alignment remains to the left. I want the behavior of the alignment to be left aligned in all situations. Any clue? Thanx!
God bless,
Omer
Flexgrid Column Alignment
Has anyone had any problems with Flexgird ingoring column alignment commands ?
I want everything aligned left justifed. Even when I do this, row 0, col 1 ends up right justifed despite alignment command.
What's up.
FlexGrid Text Alignment
Hi,
I am having trouble align the text in the very first cell(0,0) from left to right.
It automatically aligned on right to left. But all other cells aligned from left to right.
PS. This .textMatrix(0,0)'s text was added later compared all other cells.
Thanks,
Word Creation - Table Cell Alignment
Hello everybody,
I am trying to create an MS word document automatically through VB. In that document, there should be a table. The table should have 4 columns. The data in the last two columns needs to be right aligned. I could create table and fill it with data from table. But I am not able to right align contents of 3rd and 4th columns of the table. Could anybody please help me ?
I am attaching the code I wrote(A part of it I got from net)
Dim oWord As Word.Application
Dim oDoc As Word.Document
Dim oTable As Word.Table
Dim oTitle As Object
Dim iCount As Integer
Dim intYCount As Integer
Dim intXCount As Integer
Dim bCreateOrGot As Boolean
Dim intXMax As Integer
Dim intYMax As Integer
Dim strTitle As String
strTitle = "My word document"
Dim rstTable As ADODB.Recordset
Dim qryTable As String
qryTable = "SELECT artisteid,productionname, grossamount, (grossamount*17.5/100) as vat FROM artistevouchers"
Set rstTable = New ADODB.Recordset
rstTable.Open qryTable, cnnArtists, adOpenDynamic
intYMax = rstTable.Fields.Count
rstTable.MoveLast
intXMax = rstTable.RecordCount + 1
rstTable.MoveFirst
On Error Resume Next ' Defer error trapping.
bCreateOrGot = True
Set oWord = New Word.Application
bCreateOrGot = False
err.Clear ' Clear Err object in case error occurred.
If bCreateOrGot = False Then
With oWord
.Visible = True
.Documents.Add ("c:project
eceipt.doc")
End With
End If
Set oDoc = oWord.ActiveDocument
On Error GoTo 0
If bCreateOrGot = True Then
With oDoc.Application.Selection
.InsertBefore Text:=strTitle & vbCrLf
With .Find
.Text = "^l"
With .Replacement
.Text = ""
End With
.Execute Replace:=wdReplaceAll
End With
With .Font
.Bold = True
.Name = "Arial"
.Size = 8
End With
.MoveRight Unit:=wdCharacter, Count:=1
.InsertAfter Text:=vbCrLf
End With
Set oTable = oDoc.Tables.Add(Range:=Selection.Range, NUMROWS:=intXMax, NumColumns:=intYMax)
Else
With oDoc.Application.Selection
.InsertBefore Text:=vbCrLf & strTitle
Dim iloop As Integer
With .Find
.Text = "^l"
With .Replacement
.Text = ""
End With
.Execute Replace:=wdReplaceAll
End With
With .Font
.Bold = True
.Name = "Arial"
.Size = 8
End With
.MoveRight Unit:=wdCharacter, Count:=1
End With
Set oTable = oDoc.Tables.Add(Range:=oDoc.Range(Start:=17, End:=17), NUMROWS:=intXMax + 1, NumColumns:=intYMax)
End If
For intYCount = 0 To intYMax - 1 'Add headings
With oTable.Cell(Row:=1, Column:=intYCount + 1).Range
.InsertAfter Text:=rstTable.Fields(intYCount).Name
End With
Next
intXCount = 2
Dim f_total_gross_amount As Currency
Dim f_total_vat As Currency
f_total_gross_amount = 0
f_total_vat = 0
Do Until rstTable.EOF
oTable.Rows.Add
For intYCount = 0 To intYMax - 1
With oTable.Cell(Row:=intXCount, Column:=intYCount + 1).Range
If Not IsNull(rstTable.Fields(intYCount).Value) Then
Dim str_value As String
If (intYCount = 2) Then
f_total_gross_amount = f_total_gross_amount + rstTable.Fields(intYCount).Value
End If
If (intYCount = 3) Then
f_total_vat = f_total_vat + rstTable.Fields(intYCount).Value
End If
If (intYCount = 2 Or intYCount = 3) Then
str_value = String(12 - Len(CStr(rstTable.Fields(intYCount).Value)), Chr(32)) & Format(CStr(rstTable.Fields(intYCount).Value), "#0.00")
Else
str_value = CStr(rstTable.Fields(intYCount).Value)
End If
.InsertAfter Text:=str_value
Else
.InsertAfter Text:=""
End If
End With
Next intYCount
intXCount = intXCount + 1
rstTable.MoveNext
Loop
oTable.Rows.Add
With oTable.Cell(Row:=intXCount, Column:=2).Range
.InsertAfter Text:="Total"
End With
With oTable.Cell(Row:=intXCount, Column:=3).Range
.InsertAfter Text:=Format(CStr(f_total_gross_amount), "##########0.00")
End With
With oTable.Cell(Row:=intXCount, Column:=4).Range
.InsertAfter Text:=Format(CStr(f_total_vat), "##########0.00")
End With
oTable.AutoFormat Format:=wdTableFormatGrid8, ApplyBorders:=True, ApplyFont:=True, ApplyColor:=True, ApplyHeadingRows:=True
oTable.Select
With oDoc.Application.Selection
.Collapse Direction:=wdCollapseStart
.InsertParagraph
.Collapse Direction:=wdCollapseStart
End With
Set oTable = Nothing
Set oDoc = Nothing
Set oWord = Nothing
FlexGrid Vertical Text Alignment
After a good deal of mucking around, I've managed to get text to wordwrap in a FlexGrid cell and set the rowheight of the cell to display it all.
Now the cell next door - which contains a single word - is aligning the text vertically in the middle of the cell. I'd like it to align to the top.
I've had a look through the many properties you can set but can't see if any of them will allow you to specify that text will align vertically to the top of a cell. Can you do this?
Thanks for any help.
2 Flexgrid Problems (Colour Rows && Text Alignment)
I am trying to highlight every other row in a MSflexgrid.
The first row is fixed with the column headers.
I have the following, which I thought would work, but it highlights all rows, including the fixed row!
Code:
'highlight every other row
With flexFinance
For i = 1 To .Rows - 1
If i Mod 2 = 0 Then
.Row = i
.BackColor = &HF5F5F5
End If
Next
End With
Also, I am trying to have the fixed row with one set of alignment values, which after a search here, I am now using the FormatString function, and certain columns underneath with different alignments.
I have this in the formatstring:
Quote:
Originally Posted by FormatString
^Rec Num|^Date|^Cheque Num|^Transaction|^Expenditure|^Income|^TOTAL
I would like to try to get the following, after the fixed row;
Rec Num, Date, Cheque Num = Center aligned
Transaction = Left aligned
Expenditure, Income, TOTAL = Right aigned
FlexGrid Cell Colour
I am using this loop and if statement to compare two values against each other and if the first value is greater than the second i want to set a cell colour:
Code:
For coly = 1 To 26
If Val(MSFlexGrid1.TextMatrix(8, coly)) > Val(MSFlexGrid1.TextMatrix(9, coly)) Then
MSFlexGrid1.CellBackColor = vbRed
End If
Next
Now at the moment it works partially but gets terrible errors. My plan was to specify that the cell which should change colour using the reference i.e. (9,coly) so that when the code runs it compares cell 1 against cell 2 and if cell 1 is greater than cell 2 then cell 2 turns red.
Is there anyway i can specify easily which cell will be turning colour, like using the grid co-ordinates for it.
Thanks
FlexGrid Format Cell's
Hi
I need the data in Combo1, Combo2,Combo3 and Combo4 to be shown in FlexGrid Row 1 Col 5 with separated x like that
Combo1.Text = "A1"
Combo2.Text = "2B"
Combo3.Text = "3C"
Combo4.Text = "GG9"
The result will be A1x2Bx3CxGG9
If one of the combo had no data let say Combo2 then
The result will be A1x3CxGG9
Ther is no x befor or after
How to do this
Thank's
FlexGrid Format Cell's
Hi
I want to format the ComboBox text which placing over the FlexGrid
The result will show in FG2 cell in .Col 18 like that
dataincellxdataincellxdataincellxdataincellxdataincell
Where x is separates the cell data
If there is no data in any cell's then we want to make sure there is'nt tow xx behaind each other
Code:
Private Sub Command1_Click()
With FG2
.Col = 18
.Text = Combo6.Text & "x" & Combo7.Text & "x" & Combo9.Text & "x" & Combo10.Text & "x" & _
Combo14.Text & "x" & Combo15.Text & "x" & Combo17.Text & "x" & Combo18.Text & "x" & _
Combo23.Text & "x" & Combo24.Text & "x" & Combo26.Text & "x" & Combo27.Text & "x" & _
Combo31.Text & "x" & Combo32.Text & "x" & Combo34.Text & "x" & Combo35.Text
FG2.Text = Replace(FG2.Text, "xx", "x") ' If there is more then 2 xx it want work
' Also if i enter the data in any combo then i press the command
' then i clear the data and press the command it want work
End With
End Sub
What i miss
To Paint The Second Flexgrid's Cell
hi, i should want to paint the second flexgrid's cell. my code is this
Do While Not rst.EOF
If flagPrimaRiga Then
FlexGridErr.CellBackColor = colore
flagPrimaRiga = False
Else
If rst!Targa <> TargaPrec Then
If colore = &HC0E0FF Then
colore = vbCyan
Else
colore = &HC0E0FF
End If
End If
FlexGridErr.CellBackColor = colore
End If
TargaPrec = rst!Targa
FlexGridErr.Rows = rst.RecordCount + 1
.....................but to paint only the first column
why?
Flexgrid Cell Setfocus
is it possible to setfocus of a particular cell?
i want to use the cellbackcolor command to change all the cells in the row. cellbackcolor sets the cell that is currently in focus.
any ideas???
Flexgrid Cell Edit
hi!
i wonder if anyone has experienced something like this before.
i've running prog that superimposes a text box over current flexgrid cell. contains several columns, seems ok.
when the text box is visible, and user presses enter, the text box should move (tab) over the next column still superimposed.
that's where my problem lies.
if i press enter, focus moves over the next column, text box seemed to be hidden.
but if i add, say, a msgbox after the enter, before transferring focus, cell editor (text box) functions what it is intended to be.
please someone explain this to me?
thanks a lot!
Specify A Click Cell In Flexgrid???
I'm comparing info from two MSFlexGrids. When I check a row in the Grid2, info from a different column is inserted into the first
grid on a row which is incremented each loop.
What I wish to do now is to specify which row, in Grid1, I want data from grid2 to appear. I want to click on a cell in the second column of Grid1 - that cell is now the 'Destination cell'.
Next I will check a row from grid2 and info from a different column will copy to the 'Destination cell' I do not want to drag and drop between thew cells.
Hope I'm making just a little sense
Thanks
FlexGrid Cell Color
Im facing some problems in the FlexGrid
Im trying to change the font color of the row, based on the status of the record. (No changes on the back color, only in the forecolor)
To change the color Im using following code
Code:
MyGrid.CellForeColor = vbRed
To show the data in the cell im using following code
Code:
MyGrid.TextMatrix(1, 2) = "HOTEL" 'Hotel is My data
If I use .TextMatrix(row,col) property this is not working properly. Instead of changing required cell,It is changing the color of fixed row's cell
But If I use following code to show the data in the cell. It is working fine
Code:
with MyGrid
.Col=1
.Row=1
.CellForeColor = vbRed
.Text="Hotel"
end with
Is there any way to show different cell color with using textmatrix property. bcos Textmatrix property is easy to use and coding line is less
Any ideas ?
Thanks in Advance
A.Rajeeshun
FlexGrid Format Cell's
Hi
I want to format the ComboBox text which placing over the FlexGrid
The result will show in FG2 cell in .Col 18 like that
dataincellxdataincellxdataincellxdataincellxdataincell
Where x is separates the cell data
If there is no data in any cell's then we want to make sure there is'nt tow xx behaind each other
VB Code:
Private Sub Command1_Click() With FG2 .Col = 18.Text = Combo6.Text & "x" & Combo7.Text & "x" & Combo9.Text & "x" & Combo10.Text & "x" & _Combo14.Text & "x" & Combo15.Text & "x" & Combo17.Text & "x" & Combo18.Text & "x" & _Combo23.Text & "x" & Combo24.Text & "x" & Combo26.Text & "x" & Combo27.Text & "x" & _Combo31.Text & "x" & Combo32.Text & "x" & Combo34.Text & "x" & Combo35.TextFG2.Text = Replace(FG2.Text, "xx", "x") ' If there is more then 2 xx it want work ' Also if i enter the data in any combo then i press the command ' then i clear the data and press the command it want workEnd With End Sub
What i miss
FlexGrid Format Cell's
Hi
I have 2 flexGrid and i want to format the data in cell's like that
dataxdataxdataxdata
An x is separates the cell data
Exampel for first Row
FG1
the cell in .Col 6 x the cell in .Col 7 x the cell in .Col 9 x the cell in .Col 10 x the cell in .Col 14 x the cell in .Col 15 the cell in .Col 17 x the cell in .Col 18
FG2
the cell in .Col 3 x the cell in .Col 4 x the cell in .Col 6 x the cell in .Col 7 x the cell in .Col 11 x the cell in .Col 12 x the cell in .Col 14 x the cell in .Col 15 x the cell in .Col 17
The result will show in FG2 cell in .Col 18 like that
dataincellxdataincellxdataincellxdataincellxdataincell
Where x is separates the cell data
If there is no data in any cell's then we want to make sure there is'nt tow xx behaind each other
Or
Format the ComboBox which placing over the FlexGrid
VB Code:
Private Sub Command1_Click() With FG2 .Col = 18.Text = Combo6.Text & "x" & Combo7.Text & "x" & Combo9.Text & "x" & Combo10.Text & "x" & _Combo14.Text & "x" & Combo15.Text & "x" & Combo17.Text & "x" & Combo18.Text & "x" & _Combo23.Text & "x" & Combo24.Text & "x" & Combo26.Text & "x" & Combo27.Text & "x" & _Combo31.Text & "x" & Combo32.Text & "x" & Combo34.Text & "x" & Combo35.TextFG2.Text = Replace(FG2.Text, "xx", "x") ' If there is more then 2 xx it want work ' Also if i enter the data in any combo then i press the command ' then i clear the data and press the command it want workEnd With End Sub
Thank's
Animated GIF In Flexgrid Cell
Hello, just curious.. is there a way to view an animated GIF in a flexgrid cell? (other than disassembling each frame, storing it in an image control and using timers to display each frame?)
Thanks!
-Quack
Gotfocus On Each Cell Of A Flexgrid
hi everyone.. how can i get the value of a certain cell in a flexgrid everytime this particular cell receives the focus.. I already have the code to get the value if i use the click event but if i use the up and down keys.. it wont return the value.. any suggestions? thanks..
Highlighting A Flexgrid's Cell
When my msflexgrid control gets the focus, I want to highlight cell(1,1) unless it has been clicked on with the mouse, in which case I want the clicked cell to be highlighted. I think it must be fairly easy but I've been sitting too long in front of the computer today and I'm kind of stuck.
Width Of A Cell In Flexgrid
Hi
I have a Flexgrid with a cell width of 2500.I want to write into a cell but most of the time the lenght of the string I want to enter is greater than the cell width so the user could not see the full string.
what can i do in this case?There isn't a multiline property?
thanks
Max Cell Limit In A Flexgrid
Hi All,
I used a msflexgrid to display a data retrieved from the database..
VB Code:
..Me.msflexgrid1.ColWidth(0) = 2200 'stepNameMe.msflexgrid1.ColWidth(1) = 2200 'startTimeMe.msflexgrid1.ColWidth(2) = 1800 'userIdMe.msflexgrid1.ColWidth(3) = 1800 'reasonCodeMe.msflexgrid1.ColWidth(4) = 1500 'categoryMe.msflexgrid1.ColWidth(5) = 1500 'quantityMe.msflexgrid1.ColWidth(6) = 2200 'sourceLotsMe.msflexgrid1.ColWidth(7) = 2200 'targetLotsMe.msflexgrid1.ColWidth(8) = 5000 'descriptionMe.msflexgrid1.ColWidth(9) = 35000 'comment..
the last column shud display comments value which a very very long text..
however, when i run this project, the comment column did not display full contents retrieved from the dbase..
is there any max limit for text that can be displayed in a cell?
anyone have idea how to solve this?
Thanks!
Select Cell In Flexgrid
Firstly, this is my first time using the Flexgrid.
But anyway, here's what I need to do: I need to select a cell in the Flexgrid, but if it's not visible it will scroll down until it's visible.(I'm searching the grid... FYI)
Code:
Dim i As Integer
For i = 0 To fgMOB.Rows - 1
If LCase(Text1.Text) = LCase(fgMOB.TextMatrix(i, 1)) Then
'select the cell
End If
Next i
Any help? Thanks.
Coloring Flexgrid Cell By Value
Got my flexgrid working, but 2 probs (so far).
1. I'd like to have column headers with static titles on them, and can accomplish this, but when I set fixed col to 1, it requires that there be another row, and when I loop through my RS to add rows, it skips over the blank Row and leaves it sitting there.
2. When the columns are populated (from RS from mdb), I want each cell checked, and if, for instance, it is .9<num<1 then color the background of that cell green.
I've seen everything to color by row and column, but with the code that I finally got working to pop. the cells I can't find a good place to check the values and apply colors accordingly.
VB Code:
Do While Not rs.EOF MSHFlexGrid1.AddItem "" For lngCol = 0 To MSHFlexGrid1.Cols - 1MSHFlexGrid1.TextMatrix(MSHFlexGrid1.Rows - 1, lngCol) = rs.Fields(lngCol).ValueNext rs.MoveNextLoop
Also--Anything look like it could be improved upon with the above code?
Thanks,
Guph
Flexgrid Enter Cell
If i have to go a round about way for entering text into a flexgrid using a textbox that follows you around the grid why then is there an EnterCell event?
Event EnterCell()
Member of MSHierarchicalFlexGridLib.MSHFlexGrid
Fired before the cursor enters a cell.
Does anyone know?
Thanks in advance,
jim
Disable Flexgrid Cell
i need to know how to disable a cell on a msgFlexgrid that has already been selected. I'm doing a jeopardy game and can get the text to dissappear after selection but if the same cell is clicked again it will bring up the same question as before from the database......thanks
Flexgrid Cell Displacement
My decision table program will have to loop thru columns and rows of a flexgrid, comparing text in a lot of cell combinations. Is there a simple way to use relative positioning (like col + x) to compare to 2 cells in one statement?
Otherwise, it may be something like (off the top of my head):
for j = 1 to (grdA.cols - 2)
grdA.col = j
for i = 1 to (grdA.rows - 1)
wktext = grdA.text
newcol = j + 1
do while newcol < (grdA.cols - 1)
grdA.col = newcol
if grdA.text = wktext then
<a bunch of tests>
end if
newcol = newcol + 1
end
loop
loop
Thanks,
Jim
Select A Flexgrid Row (or Cell)
How can I select a specific row or cell in a Flexgrid with code?
The user will enter a search term and then I will check to see where that text is in the Flexgrid. When it finds matching text, I want it to scroll to that point in the Flexgrid and highlight it. I have tried to find the code, but have come up empty handed. Thanks for any help!
Flexgrid Cell Question
Is it posible to change the borber color of the selected cell, to say red, and to return it to normal when a new cell has been selected?
Thanks,
Rev. Michael L. Burns
Flexgrid Cell Click
I want to set the cursor on a particular cell in the flexgrid say 2nd row,2nd col.Does anyone have the code to get the screen location of the cell to set the cursor.
Regards
Seena
Controls Within A Flexgrid Cell
Hello,
Is it possible to insert a control (such as a dropdown box or commandbutton) into a flexgrid cell?
if so, how?
thanks
Darren Logan BSc (Hons)<?xml:namespace prefix = o ns ="urn:schemas-microsoft-com:office:office" />
Development engineer
Flexgrid Cell Access
Hello,
Is it possible to get the contents (text) of a specific cell in aflexgrid without setting the .col and .row first?
In other words, at the moment, to get the text from a specific cell (say1,1) i do:
Dim ret as string
grid.row = 1
grid.col = 1
Ret = grid.text
But this puts the focus on the cell (1,1) and it could be that the app.is writing to other cells at the same time which can cause confusion.
Thanks.
Best regards
Darren Logan BSc(Hons)
Development Engineer
Flexgrid Cell Adding?
i have a flexgrid in my column 6 i want for all the cells in the column to add themselves. How can i have them add themselves what code do i use please???
thanks.
FlexGrid Cell Sizing
I am using a flex grid to display one character per cell so that I can create some mappings for old positionally delimited text files.
I'm using a monospaced font and I'd like each cell to be right next to the other cells. THe problem is when I set the cell width to small values, a bunch of white space overlaps the previous column. I have turned off gridlines but to no avail.
Any ideas?
|