topic
stringlengths
1
63
text
stringlengths
1
577k
setcolor on a get with a conditional checkbox
[quote="Daniel Garcia-Gil":3bc4zuaj]deactivate lDisColors and use nClrTextDis and nClrPaneDis[/quote:3bc4zuaj] Of course. My fault. EMG
setcolor on a get with a conditional checkbox
Daniel and Enrico Thank you both for your help !! Rick
setenvironmentVariable() de xH a H
Saludos Foro Esta función la usaba con xHarbour 1.2.3. y ahora con Harbour 3.0 me marca errores [code=fw:2co01xfn]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#pragma</span> BEGINDUMP<br /><br /><span style="color: #00D7D7;">#include</span> <windows.h><br /><br /><spa...
setenvironmentVariable() de xH a H
Solucionado solo agregue: define "hbapi.h"
seterrorfilename
Hi, If I Compile and run this program with last version of Fivewin I find error.log in current folder and not c:\marco.log what's wrong? Bye [code=fw:3uk6f4nj]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><b...
seterrorfilename
Marco, there are two problems: 1. you have to specify the path separately using SetErrorPath() 2. there is an error in the function SetErrorFileName() This is the fixed sample: #include "fivewin.ch" FUNCTION MAIN()[code=fw:206b6m6k]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="colo...
seterrorfilename
Thank You Enrico
setfocus
Hola. Tengo un problema. Tengo una aplicacion y necesito que al abrir un dialog, segun un parametro (un campo logico en una tabla), el cursor quede en 2 textbox diferentes (si el campo es .t., que quede, por ej en el text box ID 102, y si es false en el ID 109; El 102, el 109 y el resto me tienen que quedar habilitados...
setfocus
Intente ahoram en el ON INIT usando XFOCUS( oObjeto ) [code:1bjuxaxk] //-------------------------------------------------------------------------// // As vezes simples SetFocus&#40; oObj &#41; nao faz um objeto ganhar foco // neste caso pode apelar para estas duas funcoes a seguir // For‡ar foco para um objeto especifi...
setkey y ALT
Hola. Tengo la siguiente instruccion: SetKey( VK_F10, { || obt1:click() } ) para que al presionar la tecla F10, se realice la accion asociada al boton obt1. El sintoma es rarisimo: cuando hago esto, funciona perfecto, pero si presiono la tecla ALT, por ejemplo para activar un ALT+64 para la ñ, se ejecuta el obt1:cl...
settare la lingua
si puo' fare inmodo che quando l'utente apre un applicazione i messaggi o l escritte per esempio i giorni della settimana, il mese del calendario sia scritto in italiano oppure se l'applicazione viene usata in america e l'utente ha il pc settato conla lingua inglese l'applicazione scrive in inglese ? quali comandi dev...
setting font on Group Box
I observed that in .rc has [1 24 "WindowsXP.Manifest" ] the font set in oFolder:SetFont( oFont ) is inherited by oGroup and direspecting oGroup:Setfont( oNewFont ) <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" titl...
setting font on Group Box
Frances,Here you have a working sample that is working fine here:test.prg[code:1fu5b8pt] #include "FiveWin&#46;ch" function Main&#40;&#41; local oDlg, oFont DEFINE FONT oFont NAME "Verdana" SIZE 0, -12 DEFINE DIALOG oDlg RESOURCE "test" REDEFINE GROUP oGrp ID 100 OF oDlg ACTIVATE DIALOG oDlg CEN...
setting font on Group Box
Thank you so much for your reply!It is very clear in your code that dialog and group object from .rc are working pretty well....But the issue is when you define folder with tab...or tabs... with define dialog and group object... that the font set to group is not possible ..? <!-- s:? --><img src="{SMILIES_PATH}/icon_c...
setting font on Group Box
Frances,Please try the call to oGroup:SetFont( oDlgFont ) from the ON INIT clause of your main dialog:ACTIVATE DIALOG oDlg ON INIT oGroup:SetFont( oDlgFont )
setting font on Group Box
Mr. Antonio,Unfortunately same thing happened. Groupboxes fonts cannot be set under dialog of folder:adialogs[1] with defined xp manifest in .RCMaybe really a bug in group class... ? <!-- s:? --><img src="{SMILIES_PATH}/icon_confused.gif" alt=":?" title="Confused" /><!-- s:? --> ?Regards,
setting font on Group Box
Frances,We have reviewing the Class TGroup and it does not seem as a bug inside it as it does not paint the text at all.It looks as a side effect of the use of themes and the use of a folder.We keep doing tests to see if we can find a workaround for it.
setting font on Group Box
Thank you so much for the immediate attention <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Looking forward for the workaround...Regards,
setting font on Group Box
Mr. Antonio,The effect of themes + folder font + group box font is really an issue for me.I cant find any solution with app on themed with folder font and groupbox font mix together...oGroup:oFont.. is 'courier 10' but the display (under xp theme) oFolder's font ... 'times 22'This is not only confusing.. <!-- s:( --><...
setting font on Group Box
Antonio Have you found a solution about this problem ? Grazie MAurizio
setting font on Group Box
This is still an issue with FWH 8.11If the groupbox has caption...[img:3ce61qx5]http&#58;//i208&#46;photobucket&#46;com/albums/bb82/fraxzi/FWxHarbour/folderfont&#46;jpg[/img:3ce61qx5]a painful workaround is to define SAY object and put on top of groupbox (without caption) <!-- s:cry: --><img src="{SMILIES_PATH}/icon_c...
setting font on Group Box
Frances,Each page of a folder contains a dialog that may be getting its font from its container (the folder), and the groupbox may be using the same font by default.Have you tried to change the groupbox font ? oGroup:SetFont( oFont )
setting font on Group Box
Yes. I assigned diff font to groupbox, say and get objects with expected results. Only that icon of folder affects the groupboxes (themed)..I tried oGroup:SetFont( oFont ) on dialog init and other workarounds but to no avail.this mystery does not exist on NON-THEMED apps... It should be solved by FWH8.11 <!-- s:P -->...
setting font on Group Box
Lets build a small example to reproduce it...
setting font on Group Box
[code:1uog1zaj] #include "FiveWin&#46;ch" function Main&#40;&#41; local oDlg, oFld, oGrp DEFINE DIALOG oDlg SIZE 400, 300 @ 0&#46;5, 1 FOLDER oFld OF oDlg SIZE 188, 138 ; PROMPTS "One", "Two", "Three" @ 1, 1 GROUP oGrp TO 5, 15 PROMPT "Test" OF oFld&#58;aDialogs&#91; 1 &#93; ...
setting font on Group Box
Setting a font. Is this what you mean ? <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->[code:3d0q0ixs] #include "FiveWin&#46;ch" function Main&#40;&#41; local oFnt, oDlg, oFld, oGrp DEFINE FONT oFnt NAME "Verdana" SIZE 0, -16 BOLD DEFINE DIALOG oDlg...
setting font on Group Box
This is working fine:[code:23fyghpz] #include "FiveWin&#46;ch" function Main&#40;&#41; local oFnt, oFnt2, oDlg, oFld, oGrp DEFINE FONT oFnt NAME "Verdana" SIZE 0, -16 BOLD DEFINE FONT oFnt2 NAME "Arial" SIZE 0, -10 DEFINE DIALOG oDlg SIZE 400, 300 FONT oFnt @ 0&#46;5, 1 FOLDER oFld OF ...
setting font on Group Box
OK! Lets try and solve this..I will build this example and post results..ASAP.The dialog should be redefined from .RC and themed.
setting font on Group Box
Ok, using themes we can reproduce the problem.First change required is this line in Class TControl:[code:8tj8y7yy] METHOD Colors&#40; hDC &#41; CLASS TControl &#46;&#46;&#46; else if IsAppThemed&#40;&#41; &#46;and&#46; Upper&#40; &#58;&#58;ClassName&#40;&#41; &#41; $ "TCHECKBOX;TRADIO;TGROUP" // changed! ...
setting font on Group Box
[code:2o5n2x3k] #include "FiveWin&#46;ch" function Main&#40;&#41; local oFnt, oDlg, oFld, oGrp local oFnt2 DEFINE FONT oFnt NAME "Verdana" SIZE 0, -16 BOLD DEFINE FONT oFnt2 NAME "Verdana" SIZE 0, -12 DEFINE DIALOG oDlg SIZE 400, 300 FONT oFnt @ 0&#46;5, 1 FOLDER oFld OF oDlg SIZE 188, 138 ;...
setting font on Group Box
Frances,Are you using themes there ?It does not work fine in Vista when using themes <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( --> It looks like a Windows bug with groups and themes. We need to find a workaround for this...
setting font on Group Box
Yes.Here's the sample codes ([b:2lcma36h]EXPANDED[/b:2lcma36h]).PRG[code:2lcma36h] #include "FiveWin&#46;ch" function Main&#40;&#41; local oFnt, oDlg, oFld, oGrp local oFnt2 DEFINE FONT oFnt NAME "Verdana" SIZE 0, -16 BOLD DEFINE FONT oFnt2 NAME "Verdana" SIZE 0, -12 DEFINE DIALOG oDlg FONT o...
setting font on Group Box
Frances,I have tried to set the hroupbox font from Class TControl Method Colors() but without success...Colors() is called just before painting the control, and even there a WM_SETFONT msg is not properly processed. Strange...
setting font on Group Box
This fails too:[code:1gd52j5d] #include "FiveWin&#46;ch" function Main&#40;&#41; local oFnt, oFnt2, oDlg, oFld, oGrp DEFINE FONT oFnt NAME "Verdana" SIZE 0, -16 BOLD DEFINE FONT oFnt2 NAME "Arial" SIZE 0, -10 DEFINE DIALOG oDlg SIZE 400, 300 FONT oFnt @ 0&#46;5, 1 FOLDER oFld OF oDlg S...
setting font on Group Box
[quote="Antonio Linares":3ol5womv]This fails too: [code:3ol5womv] #include "FiveWin&#46;ch" function Main&#40;&#41; local oFnt, oFnt2, oDlg, oFld, oGrp DEFINE FONT oFnt NAME "Verdana" SIZE 0, -16 BOLD DEFINE FONT oFnt2 NAME "Arial" SIZE 0, -10 DEFINE DIALOG oDlg SIZE 400, 300 FONT oFnt ...
setting font on Group Box
Mr. Antonio,Any development?Regards
setting font on Group Box
Frances,No, sorry, nothing yet. It seems as a Windows theme bug and we need to find a workaround.Setting the right font from Method Colors() should be enough, but it does not work.
setting font on Group Box
[b:oq3kxj0l]SOLVED!!!! - workaround[/b:oq3kxj0l]Mr. Antonio,I put this:[code:oq3kxj0l] &#46;&#46;&#46; ON INIT oFld&#58;aDialogs&#91;2&#93;&#58;bEraseBkGnd &#58;= &#123; | hDC | DrawPBack&#40; oFld&#58;hWnd, hDC &#41;, 1 &#125; &#46;&#46;&#46; [/code:oq3kxj0l] OR [code:oq3kxj0l] &#46;&#46;&#46; ON INIT oFld&#58;aDi...
setup
I use ezsetup to install the program. It works fine. Buti in the shortcut the icon does not appear. In the install.ini I write [CEAppManager] Version = 1.0 Component = K1 [K1] Description = Mio programma IconFile = logo.ico IconIndex = 0 DeviceFile = k1.exe Cabfiles = install.PPC2003_ARM.CAB Any idea? Regards Pier ...
setup
and if You use INNO SETUP ?
setup
I have found the error. The name of the icon must be equal to the name of the program. For example: Test.exe/Test.ico. EZSETUP works very well. Regards. Pier Luigi
setup rf scanners
We want to modify some of our Powerbuilder applications to run on RF scanners. we're on PB10.2 and looking into adding Symbol MC9090 mobile computers with barcode scanners to our system. Can the rf units connect to the server using ftp and run our modified powerbuilder applications (designed for smaller screens)? I wa...
setup rf scanners
???
several get's in a loop
Hello Antonio, I use the CreatBlock function for some FOR-Next loops to build screens. Now I want to use it to get the value of several get properties in a loop. However I don't get this to work. Any suggestions? Here is what I use now: [code=fw:1e2y4o1g]<div class="fw" id="{CB}" style="font-family: monospace;"><br /...
several get's in a loop
René, AEval( oDlg:aControls, { | oControl | If( Upper( oControl:ClassName() ) == "TGET", save oControl:GetText(), nil ) } )
several get's in a loop
Hello Antonio, As I understand all defined classes are in an array. But how looks this array, is there an example anywhere? If I ask: [quote:2aqmlvi9]oFld:aDialogs[2]:aControls[n]:ClassName()[/quote:2aqmlvi9], I get all classnames, but how to retrieve the name of the class (Like oGet1, oGet2...) Rene
several get's in a loop
René, > I get all classnames, but how to retrieve the name of the class (Like oGet1, oGet2...) If you mean the name of the object: oControl:cVarName if you mean its class name: oControl:ClassName()
several minor bugs FWH 13.07
Hello, I have discovered several bugs: report.prg: in method actívate, the dialog does not show the page number, I see the dialog with title and Cancel button, nothing else. To see it, you need a large dbf. rpreview.prg: when you click on Factor combobox, nothing is changed. Also, cTitles for Msg*** functions ar...
several minor bugs FWH 13.07
Up. Thanks.
several minor bugs FWH 13.07
Lucas, We have seen your post and we are working to fix them, thanks They are minor bugs, as a bug is an error that blocks an application so it can't be used.
several minor bugs FWH 13.07
Lucas, 1. In source\classes\report.prg replace: @ 200, 250 SAY oPagina VAR ::nPage OF ::oRptWnd PIXEL with this: @ 35, 90 SAY oPagina VAR ::nPage OF ::oRptWnd PIXEL SIZE 80, 12
several minor bugs FWH 13.07
Master Antonio, Please, do not mistreat such errors. Users see that failures in the application and they think the aplication it´s not safe and secure. Very very important. Best wishes,
several minor bugs FWH 13.07
2. The combobox factor is not intendeed to do "anything" except to set the zoom factor for next zoom. In case that we want to have certain functionality, this could help: [code=fw:1y4t4gua]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; @ nRow - <span style="color: #000000;">4</span>, nCol + <span s...
several minor bugs FWH 13.07
3. done, thanks
several minor bugs FWH 13.07
4. done, thanks
several minor bugs FWH 13.07
Antonio, in 1), report, METHOD Activate In the dialog is also missing the string "Preparando página: " Thanks.
several minor bugs FWH 13.07
Antonio, Lo del Factor del rpreview.prg nos lo arreglaste así en el método Setfactor de rpreview.prg ::oMeta1:SetZoomFactor( ::nZFactor, ::nZFactor * 2 ) [b:29deffl6] if !::lZoom .and. ! lInit ::Zoom( .T. ) // A.L. 08 Oct 2007 endif[/b:29deffl6] if ::lZoom ::oWnd:oVScroll:SetRange( 1, VSCRO...
several minor bugs FWH 13.07
Elvira, gracias! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
several questions about GET class
I have a few questions about the GET class. How do I set the numeric format Can I detect if the ENTER key is pressed in a GET, so I can perform an action on this How do I detect a change of GET, like every key-stroke and perform an action. I have a window with several GETs but don't get the desired result [code=fw:g...
several questions about GET class
The get problem is large to solve , the initial code used the style let's say "textbox". oGet2:SetNumFormat("###0.##") Then he has tried to use the GEt style with pictures, but correct operation has not been achieved .. this code @ 110, 115 GET oGet2 VAR aMaat[2] OF oDlg TOOLTIP "tik hier in" SIZE 100, 25 ...
several questions about GET class
Hello Manuel, Thanks for the information. I hope you can solve this. Maybe we/you can create a diffent GET class for numeric input like GETNUM? I think it is importent to have a class that accepts numeric input. The bKeydown METHOD works perfect. I looked into SOURCES and found METHOD KeyDown, but not bKeydown. How ...
several questions about GET class
Hello Manuel, I have made a little sample for a workaround with Numeric Gets. It is not so beautiful, but effective at this moment. See code: [code=fw:3ipym6ej]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveMac.ch"</span>...
several questions about GET class
Ok. Is a good solutión. I will try to implement it in the keydown of the class and that acts if the get is of numeric type. I'll tell you something when I have it so they can do tests.
several questions about GET class
ok. I have tried, but is not good solution ... If the character inserted in the middle of " numeric string" It does not work as it should. It does not work with pulsations of keys like enter , down arrow, up arrow, etc. I'm going to try to change how the pre-validation is done to see if we fix it a bit.. regards
several questions about GET class
Hello Manuel, I have done some more testing, and with a function I think we can make this work. For now I will post the function for as far as I am, but I think I can make the function more functional with SetPos and GetPos Methods. I will work on this tomorrow and let you know the result. [code=fw:111kq06u]<div class...
several questions about GET class
Hello Manuel, I have changed the code a bit and now it looks like it is working correct. You can use the backspace, arrows left and right and enter key. Can you please revice this if it is helpfull. [code=fw:doar4325]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include...
several questions about GET class
René, Very good <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Glad to see that with your great feedback and Manuel's expertise, FiveMac is moving ahead <!-- s;-) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";-)" title="Wink" /><!-- s;-) -->
several questions about GET class
Hello Antonio, Thank you, In my opinion FiveMac is a very good tool to build apps with. Specialy because one can use a lot of code used with FiveWin. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> The example I posted is not completely working correct. <!-- s:( --><i...
several questions about GET class
Hello Antonio and Manuel, I have addapted the function for the numeric input in a get. Now it works pretty good. One can put only numeric values into get and a point if specified. Also one can go back with the arrow-left and put alphanumeric values wich are not excepted. For my use it is enough, hope other users find ...
several questions about GET class
new libs for test ( copy old libs ) . Changes for numeric gets . ( in test ) <!-- m --><a class="postlink" href="https://www.dropbox.com/s/oqwygwfuao1taux/librerias.zip?dl=0">https://www.dropbox.com/s/oqwygwfuao1ta ... s.zip?dl=0</a><!-- m --> use : local nNum := 0 // nNum -> valtype numeric @ 40, 90 GET oGet...
several questions about GET class
Hello Mauel, Thank you, this works perfect as far as I can see now.
several questions about GET class
Manuel I have been thinking about testing FiveMac and just curious if FiveMac will only run on OSX, Siera, High Siera ? .. What choice of back end's do we have ? just DBFCDX ? of can we implement ADO ( ole ) to create a client\server to a Sql Server database ? Thanks for your feedback! Rick Lipkin
several questions about GET class
Began to develop in Leopard , It has been renewed functions deprecated until the last version Hight Sierra . My computer is from last 2009 ( 10 years old ) and the last system can run. I think you do not have to have problems with Sierra. I think there's a development for mysql ( Dolpin ) <!-- l --><a class="postlin...
several questions about xBrowse
Hello, This is my code: [code=fw:37ebpg0b]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.Ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"ord.ch"</span><br /><span style="color: ...
several questions about xBrowse
Mr.UkService, [quote:20qdc41z] When I press enter, it goes to next field. If I press enter agan, I can edit the field. Is possible with ONE enter to go to next field and edit it?. [/quote:20qdc41z] This is not the normal behaviour. But anyway, respecting your requirements, I made the required changes in your code. ...
several questions about xBrowse
Mr. Ramesh, Yes, thank you very much. It works as desired!!. Xbrowse is extraordinary great. The only issue is that when I press enter and I type a value, when I press enter again changes are not saved. How can I save them?. Thanks a lot.
several questions about xBrowse
Mr.ukservice, [quote:2uyzu6is] Yes, thank you very much. It works as desired!!. Xbrowse is extraordinary great. [/quote:2uyzu6is] Happy to note that I could help you. <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> Change the bPostOnEdit line shown as under: [code=fw:2uyz...
several questions about xBrowse
Mr. Ramesh, Thank you very much again for your help. It works as desired. One little last thing. When doing double click it edits and selects the field with all field including spaces. Is it possible to exclude spaces, as the picture?. [url=http&#58;//imageshack&#46;us/photo/my-images/192/xbrowsegreat&#46;png/:3p...
several questions about xBrowse
Mr.ukservice, [quote:37hlkhxl] When doing double click it edits and selects the field with all field including spaces. Is it possible to exclude spaces, as the picture?. [/quote:37hlkhxl] This is the default behaviour. You should be able to edit the field value to its maximum width defined in the Structure. In...
several questions about xBrowse
::obrow := TXBrowse():New( odlg ) obrow:=::obrow obrow:SetMySQL(odb2) obrow:bKeyDown := {|nKey|::sto0120(nkey), if(::ledit,if(nKey==VK_DELETE .and. LEN(ALLTRIM(odb1:stockid))>0, (if(msgyesno2("??????","???"),(::sto0103(odb2:qty,0,,.t.),odb2:DELETE(),obrow:Refresh()),)),if(nKey==VK_INSERT .and. LEN(ALLTRIM(odb1:st...
several questions about xBrowse
Thank you very much. I tried oBrw:aCols[ 2 ]:cEditPicture:="@!" but does not work. What is the picture clause to remove spaces?. Thank you very much.
several questions about xBrowse
up
several questions about xBrowse
up
several questions about xBrowse
A picture to remove spaces doesn't exist, as far as I know. EMG
several questions about xBrowse
[quote="Enrico Maria Giordano":38kke32l]A picture to remove spaces doesn't exist, as far as I know[/quote:38kke32l] I think so too.
several questions about xBrowse
Thank you very much. Mr. Rao said: [quote:5gz1xjtl]oBrw:aCols[n]:bEditValue := { |x| If( x == nil, Trim(<fieldname>), ( <fieldname> := x, Trim(x) ) } I do not know why you want this behavior. Users will not be able to enter longer value than the trimmed value shown in the browse[/quote:5gz1xjtl]
shared
Hola Usando mobile-5 no me acepta la clausula SHARED. He visto varios comentarios en el foro pero no llego a entender en que casos funciona y en cuales no. Como es para un cliente nuevo agradecería que me dijerais con que pda - so - red os funciona. Gracias
shared
Jose, Que error te da ?
shared
Hola Antonio USE (cFich) NEW VIA "DBFCDX" ALIAS TIC //SHARED Sin la clausula SHARED funciona perfectamente en el emulador y en la pda Symbol mc-70. Cuando pongo SHARED en el emulador se queda colgado y pone al 100% el procesador. En la pda se queda colgado y preciso de un softreset. Saludos
shared
Jose, Pues por lo que parece no lo puedes usar con SHARED. Tendrás que usar una DBF temporal u otra solución.
shared
Gracias Antonio. Para este caso (en que la conectividad esta asegurda en todo el almacen) una solución muy buena es la que propone Astursoft que es usar Terminal Server. La solución con ficheros temporales es posible, pero engorrosa. Si a alguien le funciona SHARED que por favor nos diga como lo hace.
sharing dbf files via internet
Hi, Mary christmas to all fivewinners!!!. I have a dedicated server hosted in a ISP with samba to share files under Windows. I would like to access those files for several customers as \\server´s ip (i. e. use \\195.53.1.2\data\customer.dbf). It works but too slow, particulary when open files at program start or whe...
sharing fivetech programs
Hallo, Can someone name me a free program in wich I can share my fivetech program (with his files) with my friends of our local foodbank I tried MS Teams, Dropbox, Google Drive, OneNote,... but they accept only the classic files as Word, Excel, Powerpoint, etcetera Thank you José Deschutter (1947) Belgium
sharing fivetech programs
The best option is to create a repository in GITHUB and make it public or private sharing with the people you consider.
sharing fivetech programs
+1
sharing fivetech programs
Antonio What means +1 José
sharing fivetech programs
I created a repository in GitHub and I put all my files in it. How can I launch the exe file?
sharing fivetech programs
[url:31nt0c3q]https&#58;//mega&#46;nz/[/url:31nt0c3q]
sharing fivetech programs
[url:1xvkqzl4]https&#58;//product&#46;hubspot&#46;com/blog/git-and-github-tutorial-for-beginners[/url:1xvkqzl4] [url:1xvkqzl4]https&#58;//lab&#46;github&#46;com/githubtraining/introduction-to-github[/url:1xvkqzl4] gitgub is a server for git repository git is a versioning system for source codes The idea is to share th...
sharing fivetech programs
Jose, "+1" means, "I agree with the previous poster's comment." James