Search found 36 matches: lowercase

Return to advanced search

Re: Silvo .. changes to your xMate environment

karinha wrote:Enrico, donde pongo el -wb- ?


Near the other switches, but after /w3.

karinha wrote:This is just curiosity, as /W3 never worked.


/w3 (note the lowercase!) is working perfectly. I'm always using it.
by Enrico Maria Giordano
Tue Apr 30, 2024 2:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Silvo .. changes to your xMate environment
Replies: 26
Views: 2284

Re: How to include hbCurl?

... "active"}] ``` Lastly, ensure that the email address is correctly hashed as per Mailchimp's requirements (using MD5 and in lowercase) when replacing `cSecure_Email`. If there are still issues, double-check the JSON payload for correct formatting and ensure that all required ...
by Otto
Wed Mar 20, 2024 4:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 4268

Re: JavaScript is a case-sensitive language

ReferenceError: Console is not defined

Always write 'console' with a lowercase 'c' because JavaScript is a case sensitive language.
by Otto
Wed May 26, 2021 3:23 pm
 
Forum: mod_harbour
Topic: JavaScript is a case-sensitive language
Replies: 3
Views: 752

Re: FWH 2102: GET Upper, Lower, Proper Cases

For GETs created from RESOURCES: 1) Using Picture clause "@!" forces Upper Case. 2) Using styles ES_UPPERCASE or ES_LOWERCASE in the RC file forces Upper or Lower case as per the style. 3) If both ES_UPPERCAE and ES_LOWERCASE are specified in the RC file, ES_LOWERCASE takes precedence. 4) ...
by nageswaragunupudi
Sat Mar 06, 2021 3:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2102: GET Upper, Lower, Proper Cases
Replies: 3
Views: 810

Re: FWH 2102: GET Upper, Lower, Proper Cases

In the case of REDEFINEs, the right place to define upper/lower case is the RC file. Please add the styles ES_UPPERCASE or ES_LOWERCASE in the rc file for the Gets you want. The only thing we can provide for REDEFINEs is Proper case. That is not done till now. Probably we will incorporate it by the ...
by nageswaragunupudi
Sat Mar 06, 2021 1:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2102: GET Upper, Lower, Proper Cases
Replies: 3
Views: 810

Re: Picture Clause to force Lower Case

There is NO picture clause in (x)Harbour/Clipper to force LowerCase. But you can use the style ES_LOWERCASE (value 0x10). If you define the GET from resources, add the style ES_LOWERCASE in the rc file. If you define GET from source code, add this line ...
by nageswaragunupudi
Sat Feb 27, 2021 7:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Picture Clause to force Lower Case
Replies: 6
Views: 673

Re: Problem when compiling with Harbor

Maurizio wrote:Thanks Antonio, Enrico

the strange thing is that it worked before, and on another PC it still works :?
Maurizio


maybe the lowercase define exists on your CH files
by Antonio Linares
Tue Dec 01, 2020 11:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem when compiling with Harbor
Replies: 5
Views: 744

Problem when compiling with Harbor

... that in the source I Have i := ascan(atotale[array_ive],. . . And in the header.ch #define ARRAY_IVE 4 I understand the problem is uppercase and lowercase, but it always worked before. I don't know if this happened after a Windows update Regards Maurizo
by Maurizio
Mon Nov 30, 2020 3:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem when compiling with Harbor
Replies: 5
Views: 744

De TDolphin a FWH propio

Hola a todos, Estoy actualizando una aplicación a la nueva versión de Fivewin. Antes usaba TDolphin para gestionar SQL y ahora lo estoy cambiando a la gestión propia de FWH. El caso es que en su momento con TDolphin usé: SELECTSERVER oConToServer y esto no sé que hace (es lo que tiene el prueba-erro...
by FiveWiDi
Thu Aug 15, 2019 8:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: De TDolphin a FWH propio
Replies: 0
Views: 447

Re: upper/lower

Silvio, StrCapFirst( <cString> ) --> cCnvString This function capitalize the first character and transform the other charaters to lowercase. Sample: local cString := "text TO CONVERT" cString := StrCapFirst( cString ) ? cString --> "Text to convert" regards Uwe :D
by ukoenig
Tue Jan 22, 2019 4:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: upper/lower
Replies: 4
Views: 953

Re: FWH 18.08: Enhancements to strings.prg

... * * As for hit files names, you are invited to choose names after the international * language names schemes. It is a 5 character code, having two lowercase letters * indicating the main language, an underscore and two uppercase letters indicating * the subtype of the language. In example: * * ...
by carlos vargas
Tue Nov 13, 2018 7:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.10: Enhancements to strings.prg
Replies: 19
Views: 6353

Rutina para leer Gps

... WORD w = 0, wLen = hb_parclen( 1 ); BYTE bChar; LONG nHex = 0; while( w < wLen ) { bChar = pString[ w ] ; if ( bChar >= 97 ) bChar -= 39; // lowercase if ( bChar >= 65 ) bChar -= 7 ; // uppercase bChar -= 48; nHex += bChar * pow( 16, wLen - w - 1 ); w++; } hb_retnl( nHex ); } #pragma ENDDUMP
by Busmatic_wpb
Sat Jul 22, 2017 1:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Rutina para leer Gps
Replies: 1
Views: 1035

Test GPS Error en encontrado

... WORD w = 0, wLen = hb_parclen( 1 ); BYTE bChar; LONG nHex = 0; while( w < wLen ) { bChar = pString[ w ] ; if ( bChar >= 97 ) bChar -= 39; // lowercase if ( bChar >= 65 ) bChar -= 7 ; // uppercase bChar -= 48; nHex += bChar * pow( 16, wLen - w - 1 ); w++; } hb_retnl( nHex ); } #pragma ENDDUMP
by Busmatic_wpb
Fri Jul 21, 2017 11:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Test GPS Error en encontrado
Replies: 0
Views: 669

Re: Borland Make Utility Issues

Marc,

You can use this working example:
https://bitbucket.org/fivetech/fivewin-contributions/downloads/make.zop

and modify it. Use lowercase for your PRGs names and extensions
by Antonio Linares
Fri Apr 21, 2017 11:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Borland Make Utility Issues
Replies: 40
Views: 4916

Re: Borland 64 bits makefile for FWH 64

Mulyadi,

Please modify this line this way:

IF EXIST clinica.res echo ,clinica.res >> b32.bc

and also change this line this way:

test.exe : $(PRG:.prg=.obj) $(C:.c=.obj) clinica.res

Please notice the use of lowercase
by Antonio Linares
Wed Apr 12, 2017 4:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Borland 64 bits makefile for FWH 64
Replies: 26
Views: 6055
Next

Return to advanced search