Edit Only the specific cell |
Post Reply |
Author | |
JamGodz
Groupie Joined: 25 February 2010 Status: Offline Points: 67 |
Post Options
Thanks(0)
Posted: 11 September 2010 at 4:04am |
Good day! To all expert!
Just wanna ask about on how to edit only the specific item in report control and the other item are lock for editing. Coz "AllowEdit" will unlock all item. For example All i want to edit by the user is only the quantity but the Description and Price are lock for editing. Any idea or suggestion would be greatly appreciated. Thanks.. |
|
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
Hi,
You can do follwing:
With Me.wndReportControl
.AllowEdit = True With .Columns
With .Add(.Count, "Description", 100, True)
.Editable = False End With With .Add(.Count, "Quantity", 100, True)
.Editable = True 'ReportItems in this column will be editable End With With .Add(.Count, "Price", 100, True)
.Editable = False End With End With
End With
|
|
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows XP (32bit) - SP 2 Language: Visual Basic 6.0 Zero replies is not an option.... |
|
JamGodz
Groupie Joined: 25 February 2010 Status: Offline Points: 67 |
Post Options
Thanks(0)
|
Hi Aaron,
Thank you for your reply... |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |