Give me 30 mins to rebuild all the libs + dll's and upload (using a dialup which is SO S L O W !)

Worked here (downloaded it this morning).Thorsten1867 wrote:I tried to download the new version, but I get 'egrid5_v1.06_PB4.1staticsetup.exe'
Code: Select all
;******************************************************************************************
;'egrid5' editable grid control. By Stephen Rodriguez.
;******************************************************************************************
; DEMONSTRATION PROGRAM 7.
egrid_Register("MichaelHolderried**##########**", "################################")
Procedure.l MyCellCallBack(egrid, uMsg, *cellinfo.egridCellInfo)
Protected result
ProcedureReturn result
EndProcedure
If OpenWindow(0,0,0,640,300,"egrid4 demo 7.",#PB_Window_SystemMenu|#PB_Window_SizeGadget|#PB_Window_MinimizeGadget|#PB_Window_MaximizeGadget|#PB_Window_Maximize|#PB_Window_ScreenCentered) And CreateGadgetList(WindowID(0))
egrid_CreateGrid(1, WindowWidth(0)/2-175, 150, 350, 300,24, #egrid_AlwaysShowSelection, #egrid_CustomHeader | #egrid_ResizeColumnsTrue)
egrid_CreateCellCallback(1, @MyCellCallBack())
egrid_AddColumn(1,0,"",30)
egrid_AddColumn(1,1,"First name",120)
egrid_AddColumn(1,2,"Second name",120)
egrid_AddColumn(1,3,"Gender",60)
egrid_AddColumn(1,4,"VR",30)
egrid_AddRows(1,-1, 100) ;Add 100 rows.
For b=0 To 99
egrid_SetCellText(1,0,b,"FALSE")
egrid_SetCellText(1,1,b,"Bob")
egrid_SetCellText(1,2,b,"Smith")
Next
egrid_SetHeaderHeight(1,40)
egrid_SetOption(1, #egrid_SelectionBorderWidth, 2)
SetActiveGadget(1)
Repeat
EventID = WaitWindowEvent()
Select EventID
Case #PB_Event_Gadget
Select EventGadget()
EndSelect
EndSelect
Until EventID = #PB_Event_CloseWindow
EndIf
End
Where are you?but in this case, the sun, sea and the sand got in the way!
Yes, that's it. The problem is, that the cells are sometimes selected too, if I change the cell or row in the callback. Some user are wondering, if they can select multiple cells and it's not possible to do something with it.srod wrote:Not sure what you mean? Do you mean that you wish to prevent the user selecting multiple cells by click and drag etc?