Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Grid column shrinks
Message
From
28/12/2010 11:18:11
 
 
To
29/11/2010 07:48:36
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP
Miscellaneous
Thread ID:
01490843
Message ID:
01494006
Views:
60
Thisform.strAliasLote = '_' + Sys(3)

Select * From tab_ctasxpag_002 Where tab_ctasxpag_002.statustran = ' ' Into Cursor (Thisform.strAliasLote) && This is my table

With Thisform.grdTab_ctasxpag_002 as Grid
.Visible = .T.
.RecordSource = (Thisform.strAliasLote)
.RecordSourceType = 1
.DeleteMark = .F.
.ReadOnly = .T.
.ColumnCount = Fcount((Thisform.strAliasLote))

gnFieldcount = Afields(gaMyArray,(Thisform.strAliasLote)) && Create array.

For n = 1 To .ColumnCount
strCol = 'Column'+Alltrim(Str(n))
.&strCol..ControlSource = Field(n)
.&strCol..Header1.Caption = Alltrim(Proper(Field(n)))
.&strCol..Width = Fsize(Field(n))+75
If gaMyArray(n,2) = 'N' And (gaMyArray(n,4) > 0)
.&strCol..InputMask = tcmask_numeros (variable to mask number)
Endif
Endfor

Endwith

with this code I resolved my problem, when my grid was refreshed with SQL, it produced the same problem to you.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform