Search found 43 matches: oini

Return to advanced search

Re: INI-files and mod harbour

Here you see how you can address the values from mod harbour hINI["SETUPDATEN-DATEN"] JAVASCRIPT oini["SETUPDATEN-DATEN"] HTML <?prg return hINI["SETUPDATEN-DATEN"]?> https://mybergland.com/fwforum/hashclip3.jpg REQUEST DBFCDXREQUEST ...
by Otto
Mon Jan 03, 2022 1:01 pm
 
Forum: mod_harbour
Topic: INI-files and mod harbour
Replies: 2
Views: 223

Re: many bug about local file/directory when name is utf8

INI oIni FILE ".\UTF8.ini" // <--- change to "c:\fwh\tests\中文龍咙\utf8.ini"

We should not make that change.
Trick is to keep it as ".\" + "filename.ini"
by nageswaragunupudi
Sun May 30, 2021 3:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: many bug about local file/directory when name is utf8
Replies: 19
Views: 1401

Re: many bug about local file/directory when name is utf8

   HB_CDPSELECT( "UTF8" )    FW_SetUnicode( .T. )    INI oIni FILE ".\UTF8.ini" // <--- change to "c:\fwh\tests\中文龍咙\utf8.ini"       GET val1 SECTION "నామము"       ENTRY "పేరు"          OF oIni DEFAULT ...
by ssbbs
Sun May 30, 2021 3:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: many bug about local file/directory when name is utf8
Replies: 19
Views: 1401

Re: App.Ini vs Web.Config

Yes, thank you, good point. I was looking for a class that may make it easier like the oIni class that allows us to read and write to INI files.
by byron.hopp
Fri Jun 05, 2020 5:14 pm
 
Forum: mod_harbour
Topic: App.Ini vs Web.Config
Replies: 4
Views: 785

Re: Tengo un Problema con DTPICKER

Function Fechas(Ini1,Fin1)         Local oDlg_Fec,oFont_f1,oFont_f2,otitu2,oSay_f1,oSay_f2,oIni,oFin Local obtnsalir DEFINEFONT oFont_f1 NAME"TAHOMA"SIZE0,18  BOLD         DEFINEFONT oFont_f2 NAME'TAHOMA'SIZE0,22   BOLD DEFINEDIALOG oDlg_Fec SIZE500,250PIXELFONT ...
by admsoporte
Sat Sep 14, 2019 5:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tengo un Problema con DTPICKER URGENTE
Replies: 5
Views: 861

Re: FiveDBU no guarda preferencias

Este es el codigo para guardar las preferencias. function SavePreferences() local oIni DEFAULT nLanguage := FWSetLanguage() INI oIni FILE GetEnv( "APPDATA" ) + "\fivedbu.ini" SET SECTION "Default" ENTRY "RDD" OF oIni TO cDefRdd ...
by jvtecheto
Wed Apr 24, 2019 2:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FiveDBU no guarda preferencias
Replies: 3
Views: 565

PARA ANTONIO LINARES- AYUDA... GRACIAS!!!

... en un informe, encontré este ejemplo pero no consigo que me funcione... me podrias ayudar, muchas GRACIAS!!! function COREL() LOCAL oPrn, oFont, oIni, oPrinter PRINTER oPrn PREVIEW DEFINE FONT oFont NAME "Times New Roman" SIZE 0,-12 OF oPrn PAGE #ifdef __CLIPPER__ oPrn:ImportWMF( "Invoice.Wmf" ...
by ozono1981
Fri Nov 13, 2015 6:10 pm
 
Forum: FiveWin para CA-Clipper
Topic: PARA ANTONIO LINARES- AYUDA... GRACIAS!!!
Replies: 3
Views: 1262

IMAGEN EN INFORME

... en un ejemplo pero por alguna razón no funciona...adjunto un trozo de código del ejemplo MUCHAS GRACIAS!!! function COREL() LOCAL oPrn, oFont, oIni, oPrinter PRINTER oPrn PREVIEW DEFINE FONT oFont NAME "Times New Roman" SIZE 0,-12 OF oPrn PAGE #ifdef __CLIPPER__ oPrn:ImportWMF( "Invoice.Wmf" ...
by ozono1981
Wed Nov 11, 2015 9:14 pm
 
Forum: FiveWin para CA-Clipper
Topic: IMAGEN EN INFORME
Replies: 0
Views: 637

Read record from a inifile

... }, ; {'Eur', 'Jpy', '117.452'," 1Eur = 117.452"}} on this sample I have 5 lines but it can have many lines adatatext:= array(5) INI oIni FILE "inical.ini" for n= 1 to 5 GET adatatext[n] SECTION "Cambi" ENTRY str(n) OF oIni ENDINI and then for n=1 to 4 aadd(aData, ...
by Silvio.Falconi
Mon Nov 24, 2014 9:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Read record from a inifile
Replies: 4
Views: 869

Re: COMO SE PUEDE CREAR UN OBJETO

... #include "dll.ch" #include "hbcurl.ch" FUNCTION MD203() //Obtener Token Web Service LOCAL oHttp,Doc,cxmLbody,oIni,oDlg2,oSay,oError,oInternet LOCAL ts_token:="",ts_usuario:=space(50),ts_id:=space(50) LOCAL ts_clave:=space(20),ts_exit:=.f.,tw_servidor:='' ...
by elmoiquique
Sat Jun 14, 2014 11:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMO SE PUEDE CREAR UN OBJETO
Replies: 19
Views: 6035

Re: COMO SE PUEDE CREAR UN OBJETO

... cDllname:="\MLMall\Config\POS\MkSg.InterfazPOS.Security.dll" LOCAL ts_token:="" LOCAL clObj hlib := loadlibrary(cDllName) INI oIni File "\MLMALL\config\config.ini" GET ts_token SECTION "TOKEN SESION "+e_rut ENTRY "Token" OF oIni if empty(ts_token) ...
by elmoiquique
Fri Jun 13, 2014 8:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMO SE PUEDE CREAR UN OBJETO
Replies: 19
Views: 6035

Re: Local INI file

... in the folder where the CLOCK.EXE resides. If I want some specific file to handle I must put a prefix which denotes the folder: If I use INI oIni "CLOCK.INI" it will use clock.ini in the folder where CLOCK.EXE is running, meaning - on server. If I want some other INI file I do: ...
by codemaker
Sun Nov 03, 2013 8:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Local INI file
Replies: 9
Views: 3127

SOURCE FOR IMAGE WITH *.BMP *.EMF *.GIF *.ICO *.JPG *.PNG *

... ******************** STATIC ownd //----------------------------------------------------------------------------// FUNCTION main() local oBar local oIni local cUnidad DEFINE WINDOW ownd FROM 1, 1 TO 22, 75 ; TITLE "Open image *.BMP *.EMF *.GIF *.ICO *.JPG *.PNG *.TIF *.WMF" MENU BuildMenu() ...
by HATHAL
Sun Oct 06, 2013 8:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cover Flow
Replies: 10
Views: 5585

Problem to read file Ini and Xbrowse

... AADD(aString,{aEntry, GetIni( cFile, cSection, aEntry[nI]) }) next return aString FUNCTION GetIni( cIni, cSection, cEntry, xDefault ) LOCAL oIni LOCAL xVar := xDefault // DEFAULT cIni := oApp:cIniFile INI oIni FILE cIni GET xVar ; SECTION cSection ; ENTRY cEntry ; DEFAULT xDefault ; OF oIni ...
by Eoeo
Sun Sep 16, 2012 3:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem to read file Ini and Xbrowse
Replies: 2
Views: 587

Reading from INI-file, DECIMALS are ignored ?

... ). Only got it working saving Values as String and reading like : ... ... GET c GPosW SECTION "Skins" ENTRY "Grad-PosW" OF oIni GET c GPosD SECTION "Skins" ENTRY "Grad-PosD" OF oIni ... n GPosW := VAL( cGPosW ) n GPosD := VAL( cGPosD ) Decimals must be ...
by ukoenig
Sat Jun 09, 2012 1:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reading from INI-file, DECIMALS are ignored ?
Replies: 1
Views: 624
Next

Return to advanced search