Top posts
-
Drawings with gdiplusX -part I
Five codes are presented below to show drawings in gdiplusX. Can select any code and copy it to a prg Always have the latest stable system.app version (download in vfpX codeplex). As prg th e code must also to point to gdiplusX.vcx gdiplusX proj download...
-
Awesome Html5 canvas animations - part2
Below 6 codes working with ie emulation (i tested on ie11 emulation here). the javascript part is from K3D libraries. Better to download it (its free) and run(links can be broken or moved...) locally on disc.the links are in the codes. the resources used...
-
Create a simple color picker
This is 2 methods for making a simple color palette with visual foxpro. -the first is with native vfp functions -the second is with gdiplusX -I added a trick to make an image encoded as txt file *added a random color palette with bindevent,and a form...
-
Filters & transitions on modern browsers
This code makes some standard filters on any local image and shows result on a web browser. there is 15 filters and spinners can set parameters to render the final work. Infortunatly IE11 (or vfp browser emulated one) does not support actually great majority...
-
Digging in windows10 mine
*1*created on 26 of october 2017 *!* This is a personal platform to run all windows Apps,special folders,... *!* the method is to gather in a cursor a summary description and the command to run the application. *!* there is 282 applications indexed alphabetically....
-
A web radio FM player
A pocket web radio FM player through internet connection. this form uses a web component to stream the radio FM (frequency modulation). all radio FM urls are gathered into a cursor and populate a comboBox. Any click combo builds a web page with representing...
-
Around multi languages keyboards
these 6 codes below turn around keyboards as : 1-windows OSk and positionning with APIs for showWindow=0,1 2-get representation as image of 157 windows implemented keyboard 3-virtual windows keyboards and defined keys 4-a cool multilanguage web keyboard...
-
The modern UI app windows Reader (win8.1 & win10)
I struggled to make the Modern UI App reader working programmatly (its name (window title) is locallized and then depends on language installed on system). I expose below some ways to do that. can add it in the menu of previous post (UI apps on systray)...
-
HTML5 canvas filters on images
Remember these codes work only with ie emulation as pointed in previous posts (otherwise have fired errors when running). These codes are tested on IE11 emulation. JavaScript is still essential to work with canvas. I used a mixed code vfp/javascript to...
-
A visual foxpro CHARMAP
I never seen a charmap made with Visual foxpro. the windows utility charmap.exe can run easily from vfp as follow Run/n charmap.exe &&this utility resides in windows system32 it figures all chars in relation with any font even unicode. and that's the...
-
Extract Icons from exe applications or dlls -APIs- partII
We now studay icons exclusively with APIs.These APIs of course desserve the gdiplus and gdiplusX builts. below 4 codes 1-extract icon given by an index in an exe or dll (icon is a valid one with a color depth=32) 2-Extract all icons 32x32 present in an...
-
Ownerdrawn transparent menus-Herman Tan class
Herman Tan ownerdrawn menu (2005- last updated published 2006-2008) can be downloaded from this link: http://hermantan.blogspot.com/2006/09/updated-ownerdrawn-menu-class.html first version can be seen in https://www.universalthread.com/ViewPageArticle.aspx?ID=476...
-
Visual Foxpro and design time working
Working with vfp objects at design time is completely diffrent with the runtime. At design time there is some usefull functions as: -aselobj -GetPEm -ReadMethod -WriteMethod -Saveas -collections (for each obj in ...foxObject) -..... Must retain that all...
-
Blurring& glassing a vfp form background
vfp9 have not functions to make aero theme or blur the form background as made by modern OS (vista and latest). Then instead of blurring really the form background,i replace this effect with a built form.picture,cloning exactly whatever is behind (or...
-
public Hotkeys in Visual foxpro
Inside Foxpro system can Assign easily Access Keys and Keyboard Shortcuts As you create a menu system, you should consider ease of access to the system, and you must assign tasks to the system. You must give menus and menu items tasks to perform, such...
-
Building an instantaneous search filer with vfp
[post 276] vfp historically is a good searcher but with old/traditional methods as: -pointing a folder,scan/endscan,loops,strings operations... -vfp filer (with an external dll)-this dont worked correctly and make vfp crash without any alert (abandoned)....
-
GdiplusX drawings part II
This page presents 4 codes: 1 -Chapitre I Basic Drawings 2-ChapII-Gradientbrushes in many styles and many colors 3-ChapIII-points,circles 4-Chap IV-watermarks text on image at a specified position -single or batch images -Chapitre I Basic Drawings *!*make...
-
Around the vfp systray class
Below 5 codes relative to the systray class . These codes are tested on win8.1 The Systray class is based on the VFP Hyperlink class. This allows the Systray class to be dropped on a form, just like any other visual class or coded as vfp object(createObject,...
-
Yet another gradients samples
Click on code to select [then copy] -click outside to deselect *1* *i use this sample to build some gradient based images. *this code draws with vfp native functions 10 random gradients (case choose in the spinner simple gradients or buttons type gradients)...
-
yTxt2PDF : convert any plain text (even web Html) to PDF
Foxypreviewer can translate any txt file (even big one as a book) to pdf (save this code as ytxt2pdf.prg) the text can be from any web page (html)converted to txt file or any local txt file. the txt file is divided into pages and passed to a memo field...
-
BULLZIP PDF PRINTER as COM Object
Bullzip PDF Printer is one of the most complete and advanced tools to convert any printable document into PDF or into various image file formats. This tool is compatible with all Windows versions available, and you can use it for free for personal and...
-
Customizable html5 canvas analogic clocks
In the previous posts relative to html5 canvas i shipped many html5 canvas clocks. these codes below customize three of them on many parameters as -needles hour+minutes colors -graduations colors - hour digit numbers colors -text color -clock face gradients...
-
Generating signatures
How to generate programmatly a user signature ? must present a support as a form to draw manually the user signature and save it as image format. can integrate it in a field table or put it simply in a folder and call it when needed. i present 3 solutions...
-
Messagebox with function API and VFP
The messagebox API is the source of the vfp messagebox function. this last one have many restrictions as -the text length is limited to 1024 chars max. -the text is occidental exclusively and dont support unicode. this code make an experimental builder...
-
Working with jQuery from Visual foxpro
jQuery is a lightweight, "write less, do more", JavaScript library. The purpose of jQuery is to make it much easier to use JavaScript on the web pages. jQuery takes a lot of common tasks that require many lines of JavaScript code to accomplish, and wraps...