Search found 57 matches: commas

Return to advanced search

Re: I'm not asking for the moon...

... don't hand the client something that doesn't work well. It's not easy at all, as I told you in the Xbrowse table I have the numeric figures with commas, then when I go to make the change I find them with the separation point also because I used the picture "@Z999.99" Cesar's test could ...
by Silvio.Falconi
Fri Jan 19, 2024 7:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: I'm not asking for the moon... Resolved!!
Replies: 24
Views: 2155

Re: Help splitting up a character address string

... FUNCTION SplitAddress(cAddress) LOCAL cStreet, cCity, cState, cZip LOCAL nPos1, nPos2 // Find the position of the commas nPos1 := At(",", cAddress) nPos2 := At(",", cAddress, nPos1 + 1) // Extract the street, city, state, and zip cStreet := SubStr(cAddress, ...
by Otto
Wed Nov 15, 2023 7:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 602

Re: Help splitting up a character address string

... should give you a good idea of how to implement it in your specific language. In Python, you can use the split() method to divide the string at commas and spaces. Here's how you could do it: python Copy code cAddress = "258 Shoreline Drive, Columbia, SC 29212" # Split the address into ...
by Otto
Wed Nov 15, 2023 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 602

Re: How to create a PRIVATE variable owned by the caller?

... to NIL. You can create and, optionally, initialize a list of variables and arrays with one PRIVATE statement if the definitions are separated by commas. Description The PRIVATE statement creates variables and arrays visible within the current and invoked procedures or user-defined functions . ...
by hmpaquito
Tue Jan 10, 2023 6:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to create a PRIVATE variable owned by the caller?
Replies: 21
Views: 783

Re: What does this syntax mean? hHead := {=>}

... is one or more values of any data type associated with <key> when the Hash is initialized. Multiple key/value pairs are separated with commas. Description An empty literal Hash is created with the characters {=>}. The Hash can be initialized with key => value pairs upon creation. ...
by hua
Wed Jul 03, 2019 3:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: What does this syntax mean? hHead := {=>}
Replies: 11
Views: 1344

Re: FWH 18.08: Enhancements to strings.prg

I agree, the list of commas is confusing and can carry into errors. Maybe something like: function Main()   Local nLang   FW_SetUnicode( .t. )   nLang := FWAddLanguage()   FWAddString(nLang, { ;      ...
by AntoninoP
Fri Nov 09, 2018 12:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.10: Enhancements to strings.prg
Replies: 19
Views: 5425

Re: Ribbon Theme

... Or, perhaps it is getting redefined in the New() method. The above method is defining the colors AFTER the New() method. I have counted the commas in the new() method and the codeblock should be after the 21st comma, and it is after the 22nd comma. Try moving it up one position. James This ...
by fraxzi
Tue Oct 16, 2018 5:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28250

Re: Ribbon Theme

... Or, perhaps it is getting redefined in the New() method. The above method is defining the colors AFTER the New() method. I have counted the commas in the new() method and the codeblock should be after the 21st comma, and it is after the 22nd comma. Try moving it up one position. James
by James Bott
Tue Oct 16, 2018 4:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28250

Re: To Nages searching on xbrowse

... "+rtrim(city) ) Then do an incremental search on that all in one field (on a searchbar). The user will have to remember to include the commas also. If you do what they want and give them three separate fields, then when they fill them all out, you have to paste them together an then ...
by James Bott
Tue Sep 04, 2018 12:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages searching on xbrowse
Replies: 11
Views: 2542

Re: Forma de abrir y cerrar un xls???

Mr. Rao taking advantage of the Post, how is it saved in CSV format Delimited by commas?

T
by acuellar
Wed Nov 08, 2017 12:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Forma de abrir y cerrar un xls???
Replies: 4
Views: 1247

Re: class tprinter and a dot-matrix printer

... printer without changing the current row and col. The string to pass as a parameter should content the ascii values of the command separated with commas, for example, the command to reset Epson printers should be: "27,69" SetCoors(r,c) Let you change the current row and col is the equivalent ...
by ukoenig
Sun Mar 26, 2017 3:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: class tprinter and a dot-matrix printer
Replies: 2
Views: 767

Re: Ejemplo TdosPrn

... printer without changing the current row and col. The string to pass as a parameter should content the ascii values of the command separated with commas, for example, the command to reset Epson printers should be: "27,69" SetCoors(r,c) Let you change the current row and col is the equivalent ...
by LuisPonce
Thu Aug 18, 2016 4:01 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo TdosPrn
Replies: 11
Views: 2755

Re: New FWH 16.01

Except for the leading commas, the 2nd one fits the PICTURE pattern. Where is the error ?
by TimStone
Mon Jan 25, 2016 5:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 16.01
Replies: 17
Views: 5472

Re: 15.10 Browse problem

... In some cases I have text I want to center, and not left justify. 1. ",,,2,,,2,," Ths is ok. We also do not need trailing commas. ",,,2,,,2" is enough. Also, I'm not seeing bitmaps centering in a column. They are left justifying with what I provided in the sample. ...
by nageswaragunupudi
Thu Jan 07, 2016 6:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 15.10 Browse problem
Replies: 27
Views: 8402

Re: How many INDEX can create ON MySql and How to use it?

... Persons (LastName) If you want to create an index on a combination of columns, you can list the column names within the parentheses, separated by commas: CREATE INDEX PIndex ON Persons (LastName, FirstName)
by Rick Lipkin
Fri Jun 26, 2015 1:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How many INDEX can create ON MySql and How to use it?
Replies: 8
Views: 2467
Next

Return to advanced search