Search found 4918 matches: zip

Return to advanced search

Re: Help splitting up a character address string

... And fivewin" then the answer is very different: To convert an Excel worksheet containing addresses with columns for Street, City, State, and Zip to a SQL table using Harbour and FiveWin, you can follow these steps: 1. Load the Excel file: Use the appropriate library or functions in Harbour ...
by frose
Wed Nov 15, 2023 11:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 603

Re: Help splitting up a character address string

... column 1 thru the end column ( whatever ) and take all those values and stuff them into a temp .dbf file. The SQL table has Street,City, State and Zip .. however the Address excel column has street,city,state and zip concatenated into one excel column .. so the trick is as I loop through the for\next ...
by Rick Lipkin
Wed Nov 15, 2023 10:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 603

Re: Help splitting up a character address string

... of the commas nPos1 := At(",", cAddress) nPos2 := At(",", cAddress, nPos1 + 1) // Extract the street, city, state, and zip cStreet := SubStr(cAddress, 1, nPos1 - 1) cCity := SubStr(cAddress, nPos1 + 2, nPos2 - nPos1 - 2) cState := SubStr(cAddress, nPos2 + 2, 2) cZip ...
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: 603

Re: Help splitting up a character address string

... ... Any code help would be greatly appreciated! Thanks' ChatGPT To split the address string into separate variables for street, city, state, and zip code, you can indeed use the At() function or similar string manipulation functions. The approach depends on the programming language you're using. ...
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: 603

Re: Help splitting up a character address string

... the correct use of AT() and RAT() but I finially wrote a function I can use to take a full address field and break it into Street, City,State and Zip .. here is the code : // test.prg#INCLUDE "FIVEWIN.CH"Function Main()Local cAddress,cStreet,cCity,cState,cZip,nAt,nRat,nLen,nDiff,nRat1,nDiff1cAddress ...
by Rick Lipkin
Wed Nov 15, 2023 6:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 603

Re: OT - quienes tengan experiencia en MAC

... puedes usar la librería xlsxlibhb publicada en estos foros: https://github.com/FiveTechSoft/FWH_tools/blob/master/Xlsxlibhb_ver2.zip El ordenador Apple a usar tiene microprocesador Intel ó es de los más recientes con arquitectura ARM ?
by Antonio Linares
Tue Nov 07, 2023 1:48 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: OT - quienes tengan experiencia en MAC
Replies: 1
Views: 192

Re: Que necesito para desarrollar para IPAD?

Antonio y amigos: He descargado y sacado del ZIP a Harbour desde la liga que recomendó Antonio desde luego cambié el path para que apunte a Harbour descargado. ahora tengo otros errores hbmk2: Compilando...hbmk2[app]: Error: Ejecutando ...
by Armando
Mon Nov 06, 2023 11:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Que necesito para desarrollar para IPAD?
Replies: 15
Views: 1074

Re: FWH 2310 Active X problem ?

Antonio,

Same issue. I just emailed you the full source file for the class and the error code that was generated with the newly downloaded file.

I hope your server doesn't reject the attachment. It is small, and I changed .zip to .mls

Tim
by TimStone
Fri Nov 03, 2023 8:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2310 Active X problem ?
Replies: 13
Views: 509

Re: SHA256 CRC

Dear Philippe,

? hb_CStr( hb_SHA256( hb_memoRead( "filename.zip" ), nil ) )
by Antonio Linares
Fri Nov 03, 2023 8:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SHA256 CRC
Replies: 2
Views: 215

New FTDN October/Octubre 2023 (FWH 23.10)

... Library download link: https://github.com/FiveTechSoft/FWH_tools/blob/master/Xlsxlibhb_ver2.zip - Any one or both these libraries can be downloaded and linked with FWH application. FWH further provides wrapper classes for these libraries to ...
by Antonio Linares
Thu Nov 02, 2023 9:53 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2023 (FWH 23.10)
Replies: 1
Views: 3909

Re: Para Cristobal Navarro...Aplicacion completa Fivedit...

Estimado Joao, no tengo posibilidad de probarlo en Windows 7
Seguro que es un problema de las DLLS necesarias
Prueba poniendo estas
https://bitbucket.org/fivetech/fivewin- ... E_DLLS.zip
en la carpeta donde tengas FivEdit instalado
by cnavarro
Mon Oct 30, 2023 8:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Para Cristobal Navarro...Aplicacion completa Fivedit...
Replies: 24
Views: 1686

Re: Mejoras para scintilla

... que te solicite en la carpeta de instalación de FivEdit O prueba con estas https://bitbucket.org/fivetech/fivewin-contributions/downloads/FE_DLLS.zip Es un tema necesario a partir de añadir conexion a GitHub, etc. Ya lo explico en próximos posts
by cnavarro
Mon Oct 30, 2023 8:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mejoras para scintilla
Replies: 1037
Views: 840941

Re: Long file names

Thank you, karina, I'll try to use it.
Question about extracting long files from the .zip archive remains open :(
by Natter
Mon Oct 30, 2023 6:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Long file names
Replies: 3
Views: 309

Re: Descargar archivo devuelto por un json

Hola,

Me parece que tiene un fichero como retorno, prueba guardar el archivo con extension .zip :D
by Lailton
Sun Oct 22, 2023 3:00 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Descargar archivo devuelto por un json (Solucionado)
Replies: 5
Views: 372

Descargar archivo devuelto por un json (Solucionado)

... de ticket con el no. de ticket generado en el paso 2, termina con la respuesta del estado del ticket y el nombre del archivo a descargar (archivo zip) 4. Solicito descargar el archivo zip, esto me imprime la pantalla https://i.postimg.cc/Q9CMHZjn/rpta.jpg Hice la prueba en postman ...
by artu01
Sun Oct 22, 2023 1:40 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Descargar archivo devuelto por un json (Solucionado)
Replies: 5
Views: 372
PreviousNext

Return to advanced search