Search found 308 matches: operating

Return to advanced search

Re: Visual Studio Code

... the changes and you are done! Start using vscode (Visual Studio code) and get used to it. It is a very good source code editor that runs all ALL operating systems (Windows, Mac, and Linux). You will realize that mod_harbour will "free" us from Windows also. You may use it from an Apple ...
by Antonio Linares
Tue Sep 24, 2019 5:57 am
 
Forum: mod_harbour
Topic: Visual Studio Code
Replies: 4
Views: 1123

Re: Setup Barcode system in FWH

... a problem with a keyboard wedge. I thought maybe you have a solution to disable the scanner. We have this problem with clerk key system which is operating the same way. Best regards Otto
by Otto
Wed Mar 13, 2019 9:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Setup Barcode system in FWH
Replies: 29
Views: 6275

Re: strategies

... is a big difference in the approach of what the strategy to follow should be, and what users prefer. Another issue is that in mobile devices with operating systems other than Windows, for now, there is no choice but to see other possible solutions.
by cnavarro
Fri Feb 22, 2019 12:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: strategies
Replies: 34
Views: 8160

Re: Advice for buying new PC

... and SSD hard disk, will give you optimal performance. Sooner or later Microsoft will continue to move forward and, as has happened with previous operating systems, Windows 7 will disappear.
by cnavarro
Tue Dec 04, 2018 3:17 pm
 
Forum: Off Topic / Otros temas
Topic: Advice for buying new PC
Replies: 5
Views: 1673

Re: Your EXE into a Web app

... complex applications will not work out. A couple of years ago I tested out FiveMac. It's a great idea, but there are essential differences in the operating systems, and because of that, many advanced windows features in FWH could not be ported to the Mac. Perhaps the same ends up being true on ...
by TimStone
Mon Oct 15, 2018 8:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Your EXE into a Web app
Replies: 41
Views: 9056

Re: Invisible CDX files

Just an update. Turning off "Hide protected operating and system files" didn't make any difference. Still only 2 of the 5 CDXs are visible. I tried rebooting after changing the setting and that didn't work either.

At least the program is seeing them...
by James Bott
Fri Sep 07, 2018 11:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Invisible CDX files
Replies: 21
Views: 3328

Re: Invisible CDX files

... The actual sequence to the setting is: Explorer, View tab, Options, Change folder and search options, View tab, Advanced Settings, Hide protected operating and system files It is set to hide them on my computer, yet I have never observed this issue on my computer which I have been using for several ...
by James Bott
Thu Sep 06, 2018 3:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Invisible CDX files
Replies: 21
Views: 3328

Unicode characters displaying as ANSI on windows title bar

... and Server 2012. This link provides a reasonable explanation of what is going on. What I don't understand yet is why I'm only seeing it on server operating systems. [url] https://stackoverflow.com/questions/33358546/chinese-characters-in-title-bar [/url] This is the original code: // Testing FiveWin ...
by rhlawek
Thu Jul 05, 2018 5:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unicode characters displaying as ANSI on windows title bar
Replies: 11
Views: 1887

Re: Server vs Notebook as Server for FW programms

... to cloud hosted service or platform hosted service, we get better performance, backup and security included at low cost you can use your desired operating system, you can use hosted service as web server, rdp server or database server, for security all devices can connect through VPN or Site ...
by nnicanor
Wed Jun 06, 2018 8:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Server vs Notebook as Server for FW programms
Replies: 44
Views: 16935

Re: Antonio: Differences between BORLAND and VCC

... net client ( framework ) .. and trying to keep up with dot net ver 1.1, 2, 3.5, 4.6,4.7 .. When was the last time someone gen'd up a Windows 7 sp1 Operating system from scratch ? .. did you know a Fresh Install of Windows 7 has over 90+ security and upgrade patches to the dot net client ( after ...
by Rick Lipkin
Thu May 31, 2018 2:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio: Differences between BORLAND and VCC
Replies: 32
Views: 6404

Re: FwSavePreviewToPdf

... the PdfPrinter I thought in TReport too, but I found TReport makes many of its decisions based on the physical printers properties, querying the operating system functions directly, so there is no way to cheat it with sth like that. If I had to make a change, I would go for abstracting the device ...
by Carlos Mora
Sat May 12, 2018 10:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FwSavePreviewToPdf
Replies: 34
Views: 5460

ntdll.dll error

... error with the file ntdll.dll . I have researched this and found this is likely caused by a defective .dll file, which is part of the windows operating system files distributed by Microsoft. I do not distribute or knowingly interact with this file in my application. So here is my question: ...
by TimStone
Thu Mar 29, 2018 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ntdll.dll error
Replies: 8
Views: 1463

Re: Fivewin a C++ framework

... three layers: 1. The Windows API 2. (on top of 1.) Classes and Objects 3. (on top of 2.) xBase commands We could replace layer 1 with a different operating system and API and thus we get FiveMac, FiveLinux, FiveTouch, etc. Layer 3 is natural language. In fact xBase is quite similar to SQL (or ...
by Antonio Linares
Wed Mar 14, 2018 5:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin a C++ framework
Replies: 13
Views: 2739

Re: btnbmp style win10

To be sure of using the same theme of the operating system, you can use my implementation of theme inside TBtnBmp.

For all BtnBmps inside the application:
Code: Select all  Expand view
TBtnBmp():lDefaultTheme := .T.


or for a single BtnBmp:
Code: Select all  Expand view
oButton:SetThemed(.T.)
by AntoninoP
Mon Feb 12, 2018 8:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: btnbmp style win10
Replies: 17
Views: 3993

Re: GetSysMetrics en windows 10

João Consider this code _ResMessage() called from the Activate Window code.. Seems to work fine with all Operating Systems including Windows 10 64 bit. Rick Lipkin //-------------------------nSCR1 := GetSysMetrics(0)  // widthnSCR2 := GetSysMetrics(1)  // heightACTIVATE ...
by Rick Lipkin
Fri Oct 20, 2017 2:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: GetSysMetrics en windows 10
Replies: 3
Views: 678
PreviousNext

Return to advanced search