Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Irwin1985
  • Content: Threads
  • Order by date
  1. Irwin1985

    MagicMenu for VFP special projects

    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...
  2. Irwin1985

    Avoid sorted properties by using AMEMBERS()

    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...
  3. Irwin1985

    JSONFox Library

    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...
  4. Irwin1985

    How to explicitly include a free DBF table by code using the BUILD PROJECT command

    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 =...
  5. Irwin1985

    VFP API Returning an Object

    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 =...
  6. Irwin1985

    FoxRegEx

    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...
  7. Irwin1985

    How to Wait until the control Timer finish its task

    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 =...
  8. Irwin1985

    How to solve this issue

    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...
  9. Irwin1985

    FoxFaker Library

    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...
  10. Irwin1985

    Singleton Class in Visual FoxPro 9.0

    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...
  11. Irwin1985

    Use the VFP Intellisense in my Application

    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...
  12. Irwin1985

    Call Any Windows Handler from VFP

    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...
  13. Irwin1985

    Execute external or dinamyc code

    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...
  14. Irwin1985

    OCX for Business Intelligence Cube (BI)

    Hi, Is there any free or licensed version from some cube BI ActiveX component? compatible with VFP of course. Thanks...!
  15. Irwin1985

    Show Confirm Dialog like Windows 10 Pro

    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...!
  16. Irwin1985

    Override _SCREEN Methods

    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"...
  17. Irwin1985

    How to avoid the waiting cursor while timer event runs

    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...
  18. Irwin1985

    Create, Save and Modify a form by code

    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...

Part and Inventory Search

Back
Top