Search found 1441 matches: cell

Return to advanced search

Re: ayuda con edicion en xbrowse

Inline Edit Behavior: During inline edit of a cell, by default, the changes are saved if the user confirms the changes either by pressing enter or any arrow keys. During the edit, if the Get loses focus, either by clicking another cell or changing ...
by nageswaragunupudi
Sun Aug 13, 2023 4:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda con edicion en xbrowse
Replies: 3
Views: 241

Re: Consulta sobre centrar un dialogo.

... COLSIZES 50,20,290,50 OF oDlg ; SIZE 300,238 PIXEL ; JUSTIFY .T.,.f.,.f.,.t. ; ALIAS cAlias AUTOSORT FOOTERS LINES CELL NOBORDER ; Font oFont; BACKGROUND aGrad VERTICAL oBrw:nStretchCol := 2 oBrw:nRowHeight := 30 oBrw:nMarqueeStyle := 4 // anulo el doble color d ...
by José Camilo
Tue Aug 01, 2023 1:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre centrar un dialogo.
Replies: 9
Views: 437

Re: how store Image into Database

... oRs:image := MEMOREAD( "picture.jpg" ) If you are browsing in XBrowse, you can copy image from any source and paste into the cell. This works for all datasources, viz, dbf, tdatabase, ado, fwmysql, dolphin, tmysql, postgre, arrays, etc.
by nageswaragunupudi
Sun Jul 23, 2023 11:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how store Image into Database
Replies: 3
Views: 308

Re: how store Image into Database

... oRs:image := MEMOREAD( "picture.jpg" ) If you are browsing in XBrowse, you can copy image from any source and paste into the cell. This works for all datasources, viz, dbf, tdatabase, ado, fwmysql, dolphin, tmysql, postgre, arrays, etc.
by nageswaragunupudi
Sun Jul 23, 2023 11:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how store Image into Database
Replies: 3
Views: 308

Re: Xbrowse, FastEdit y xBrw:Edit() tratando de entender...

... If oCol:nEditType is > 0 and oCol:lReadOnly is .F. ( default ) and oCol:bEditWhen is NIL (default ) or Evaluates to .T. inline edit of the cell is automatically available (whether oBrw:lFastEdit is .T. or .F. ) ... Methods oBrw:Edit( lAppend ) and oBrw:EditSource( lAppend ) are provided ...
by jose_murugosa
Tue Jul 18, 2023 9:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse, FastEdit y xBrw:Edit() RESUELTO
Replies: 7
Views: 320

Re: Booking xbrowse example

... the power of xbrowse and fwh. Thanks for this great example. :D Only a little glitch... When the program starts and you reserve a first cell to a customer you can not immediately drag and drop this cell. First you must click at an other cell. Then after drag and drop works well. Regards, ...
by Detlef
Wed Jul 12, 2023 9:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Booking xbrowse example
Replies: 16
Views: 3319

Re: Listbox in Cell of Excel

Wow, Antonio thanks for this. Btw I have been utilizing ChatGPT this morning and although I have not solved my specific question, I have learned alot. Thanks, for the Tip, and I will now go through your answers and see if I can get this.
by byron.hopp
Thu Jun 15, 2023 6:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox in Cell of Excel
Replies: 6
Views: 402

Re: Listbox in Cell of Excel

Answer using Google Bard: Sub AccessListBox()'Declare variablesDim oExcel As ObjectDim oSheet As ObjectDim oListBox As ObjectDim i As IntegerDim strValue As String'Set Excel objectSet oExcel = CreateObject("Excel.Application")'Set Excel sheet objectSet oSheet = oExcel.Sheet...
by Antonio Linares
Thu Jun 15, 2023 5:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox in Cell of Excel
Replies: 6
Views: 402

Re: Listbox in Cell of Excel

Sub SelectListBoxItem()    Dim wb As Workbook    Dim ws As Worksheet    Dim lb As ListBox    Dim cell As Range    Dim item As Variant    Dim targetValue As String        ' Assuming you have an open workbook, ...
by Antonio Linares
Thu Jun 15, 2023 5:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox in Cell of Excel
Replies: 6
Views: 402

Re: Listbox in Cell of Excel

... = xlWorkbook.Worksheets("Sheet1")xlWorksheet.Activate()cellAddress = "A1"cell = xlWorksheet.Range(cellAddress)For Each shape In xlWorksheet.Shapes    If shape.TopLeftCell = cell ...
by Antonio Linares
Thu Jun 15, 2023 5:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox in Cell of Excel
Replies: 6
Views: 402

Re: Listbox in Cell of Excel

I got plenty of answers from Google that didn't help. What exactly did you ask? I have no idea what the names of the list boxes are so I need to go through a process of getting a list of all of the list boxes and how to access. If it gives me the correct answer than you might never see me again on t...
by byron.hopp
Thu Jun 15, 2023 9:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox in Cell of Excel
Replies: 6
Views: 402

Re: Listbox in Cell of Excel

Dear Byron,

I have just asked chatGPT about it and it provided answer and code, you may give it a try
by Antonio Linares
Thu Jun 15, 2023 6:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox in Cell of Excel
Replies: 6
Views: 402

Listbox in Cell of Excel

Anybody had any luck with accessing Listboxes in excel using OLE. I have a spreadsheet with a Listbox in about every cell. The user is suppose to select the value from the list box to fill it out. I am trying to fill it out using Fivewin and Ole. Don't have complete access to the ...
by byron.hopp
Wed Jun 14, 2023 10:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox in Cell of Excel
Replies: 6
Views: 402

Re: Xbrowse : Tooltips timers

... ) From whatsnew.txt * XBROWSE: - New: XBrColumn new DATA bCellToolTip: CodeBlock to return tooltip text. To show tooltip when mouse hovers over a cell. This supercedes oCol:bTooTip, which is depricated. Using bToolTip requires the programmer to write a separate function to naviato the mouse over ...
by nageswaragunupudi
Mon Jun 12, 2023 2:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Tooltips timers
Replies: 3
Views: 236

Re: Xbrowse : Tooltips timers

This is for afther FW 21.06.. ? Will upgrade for some of the new stuff ))) I'm using a function because I need the value of the cell to be formatted in some kind. cell = Black,White,Green,Blue,Orange Tooltip needs to show 1. Black 2. White 3. Green 4. Blue ... Time will be there afther ...
by Marc Venken
Mon Jun 12, 2023 1:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Tooltips timers
Replies: 3
Views: 236
PreviousNext

Return to advanced search