Hello everyone,
For those who are interested in creating web solutions (API REST, html based) using Visual FoxPro 9.0 as backend code, I have created a couple of libraries that makes these kind of solutions possible by using the MagicMenu Tool.
With this MagicMenu you can also create Console...
Hi everyone,
if you try this example:
CLEAR
obj = CREATEOBJECT("Empty")
ADDPROPERTY(obj, "c", "c content")
ADDPROPERTY(obj, "b", "b content")
ADDPROPERTY(obj, "a", "a content")
AMEMBERS(aProp, obj)
DISPLAY MEMORY LIKE aProp
you'll notice that AMEMBERS() function retrieves an ordered array...
Hi everyone!
I've rewritten the JSONFox library using the 'Recursive Descent Parsing' approach and the result was pretty cool. Now you can use it as a compiled application by issuing the following:
Do LocFile("JSONFox", "app")
This new version is full compatible with the old one 1.9 specially...
Is there any way to include a DBF file in the project by code? When you add a free table in your project that file will be excluded by default so you must to include it explicitly if you want to use it within your EXE.
Here's an example of BUILD PROJECT command:
lcPJXFileName =...
Hi there,
Does anybody know how to return an object from a FLL? If so, please code. I tried this but doesn't work:
#include <stdio.h>
#include "pro_ext.h"
typedef struct {
char *name;
int age;
} person;
void ReturningObject(ParamBlk *parm)
{
person p1;
p1.age = 34;
Value *val;
val->ev_type =...
Hi everyone!
I'm glad to present you this wrapper library written in Vfp for he RegEx object built in VBScript. Besides providing all the RegEx object functionality you may get all the matches in a cursor. You may also call the built in validators patterns for email, urls, etc.
Give it a shoot...
I have a control Timer that executes its Timer Events 100 times. In other method I do the following:
nTimes = 100
Timer1.Enabled = .T. && this enables the control Timer and its task begins.
&& But in this line I need to wait until the timer finish its task.
I tried:
DO WHILE TaskFinishedFlag =...
I have a menu embdbed to _SCREEN:
On Selection Bar 1 Of MyPopMenu Do prcLoadConfig
Procedure prcLoadConfig
MessageBox("Hello Procedure!!!")
EndProc
Works quite good but if you switch VFP main window to another and execute the option again then you get this error:
What am I doing...
Hi everybody
I've released a class library that fakes data for you. This is really useful when you're implementing n-tier architecture, 3-layer, or just isolate the business logic and data access layer.
NOTE: you may combine FoxFaker with FoxUnit and FoxMock for a better performance...
I need to create my own Singleton Class using Visual FoxPro 9.0
I tried this:
oRef1 = CreateObject("Singleton")
oRef2 = CreateObject("Singleton")
oRef1.cTest = "Some Text"
?oRef1.cTest && Some Text
?oRef2.cTest && Prints nothing :(
Release oRef1, oRef2
Clear All
Return
*-- Singleton class...
Hi everybody,
Is it possible to use the intellisense in my application...? My users write code in an EditBox control but they don't have the intellisense's advantage. Is there any example or solution for implementiong this idea? I just want to use either the intellisense or the syntax...
Hi Everybody
I have this issue:
In any Forms I call another Window made in another programming language. That window show up as an independent window form and when I minimize my application and restore it I can't see my new window again (I have to click it on taskbar)
Is there any events on...
By Google Translate:
Greetings Community,
I raise my problem:
In a normal and current EXE, I want to execute an external code that I create and execute from a button, it is an accounting business rule, in short, let's say the code is this:
Rule.txt
Public oForm
oForm = CreateObject...
Hi everybody,
Is there any Windows API that show a confirm dialog like shown image below?
Some friends of mine has made it on theirs VFP apps and i wonder if they did it using Windows API or just by Class Library designing.
If it's so, please post an example.
Thanks...!
Hi everybody,
I'd like to Override _SCREEN Events for example: Init(), Load(), Unload(), Custom Methods, etc.
I can do it in a Form like this:
oForm = CreateObject("MyForm")
oForm.Show(1)
Release oForm
DEFINE CLASS MyForm AS Form
PROCEDURE Init
? "Método Init Sobreescrito"...
Hi everybody,
I have a control Timer running each second in my form but when it runs the form shows a wait icon as pointer. How can i avoid or hide that mouse Pointer?
I tried this:
Procedure Timer
This.Enabled = .F.
Thisform.MousePointer = 0
ThisForm.Lockscreen = .T.
&& Here goes...
Hi everyBody,
How can i build a form by code, save it as scx file and in the end show it into the form designer?
I want to do a kind of builder where the user (programmer) select some custom controls I've done and in the end click "Generate Form" button.
I tried the following code but didn't...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.