Microsoft Visual FoxPro Professional Edition 6.0 for PC Logo

Related Topics:

Posted on Jan 02, 2009
Answered by a Fixya Expert

Trustworthy Expert Solutions

At Fixya.com, our trusted experts are meticulously vetted and possess extensive experience in their respective fields. Backed by a community of knowledgeable professionals, our platform ensures that the solutions provided are thoroughly researched and validated.

View Our Top Experts

Foxpro dos application exe obfuscation

Hi everyone!

i am a programmer from India.
Ihave developed a complete software package for Retail Chemist in Foxpro2.6 dos. It has accounting module and i have also add module totransfer all the data into Tally 9.0.

Now as i have work so hard on developing it. i dont want anyone to steal my source code by decompiling.

Can any one please tell me, how can protect my foxpro exe from decompiling.

Waiting for help.

Thnak you.
Harish.

2 Answers

Alexey Krenvalk

Level 2:

An expert who has achieved level 2 by getting 100 points

MVP:

An expert that got 5 achievements.

Sergeant:

An expert that has over 500 points.

Champion:

An expert who has answered 200 questions.

  • Microsoft Expert 419 Answers
  • Posted on Jul 24, 2013
Alexey Krenvalk
Microsoft Expert
Level 2:

An expert who has achieved level 2 by getting 100 points

MVP:

An expert that got 5 achievements.

Sergeant:

An expert that has over 500 points.

Champion:

An expert who has answered 200 questions.

Joined: Sep 18, 2007
Answers
419
Questions
0
Helped
309151
Points
517

Work with foxpro databases by the use of next material dbf file repair software download
http://www.dbf.repairtoolboxx.com

Anonymous

Level 1:

An expert who has achieved level 1.

Corporal:

An expert that has over 10 points.

Problem Solver:

An expert who has answered 5 questions.

  • Contributor 9 Answers
  • Posted on Jun 12, 2009
Anonymous
Contributor
Level 1:

An expert who has achieved level 1.

Corporal:

An expert that has over 10 points.

Problem Solver:

An expert who has answered 5 questions.

Joined: Jun 12, 2009
Answers
9
Questions
0
Helped
3266
Points
10

You need the re-fox or fox shell

is works good

an from mexico

Ad

3 Related Answers

Anonymous

  • 1 Answer
  • Posted on Mar 19, 2009

SOURCE: i can't add data in the database using vb

Hi,
The database can be any like oracle.

Two type of connection u can make.
One of such connection is ADODB

The code is like

Dim ors As ADODB.Recordset
Dim oconn As Connection
Dim Qry as String
dim Qry1 as string
Set ors = New ADODB.Recordset
Set oconn = New ADODB.Connection
Chk_selectall.Visible = False

oconn.Open "Provider=MSDAORA.1;" & "user id = " & Username & _
";password = " & Password & ";data source = " & Conn_string _
& ";Persist Security Info=True"

Qry = "insert into table1 values (100,'we')"

oconn.execute "Qry"

If u select any data then u ve to use
Qry1 = "select * from table1"

ors.open "Qry1",oconn

do until ors.EOF

msgbox ors(0) & "," & ors(1)

ors.movenext;

loop

Ad

Anonymous

  • 64 Answers
  • Posted on Mar 07, 2011

SOURCE: How to add a picture in a field in Visual foxpro.

The type of the field should be GENERAL.
Try this command: APPEND GENERAL <fld_name> FROM <url_file>
For example: APPEND GENERAL my_gral_fld FROM 'c:\my_file.jpg'
Good luck!

Anonymous

  • 64 Answers
  • Posted on Mar 20, 2011

SOURCE: can you give sample source

Create a connection: lcStringCnxRemoto = "DRIVER={MySQL ODBC 3.51 Driver};" + ; "SERVER=200.1.1.1;" + ; "PORT=3333;" + ; "UID=booking;" + ; "PWD=booking;" + ; "DATABASE=booking;" + ; "OPTIONS=131329;" lcStringCnxLocal = "DRIVER={MySQL ODBC 3.51 Driver};" + ; "SERVER=localhost;" + ; "UID=root;" + ; "PWD=clave;" + ; "DATABASE=booking;" + ; "OPTIONS=131329;" SQLSETPROP(0,"DispLogin" , 3 ) lnHandle = SQLSTRINGCONNECT(lcStringCnxLocal)
Accesing data:
SQLSETPROP(0,"DispLogin" , 3 ) lnHandle = SQLSTRINGCONNECT(lcStringCnxLocal) IF lnHandle > 0 cmd = SQLEXEC(lnHandle,"select QuantityRooms from roomtype","cur_roomtype") IF cmd > 0 BROWSE ELSE AERROR(laErr) MESSAGEBOX("Can't connect to mySQL. Error: " + CHR(13) + laErr[2]) ENDIF USE IN cur_roomtype SQLDISCONNECT(lnHandle) ELSE AERROR(laErr) MESSAGEBOX("Can't connect to mySQL. Error: " + CHR(13) + laErr[2])
ENDIF
Creating complex sentences:
TEXT TO lcSQLcommand NOSHOW SELECT Inventory.inventoryid, Inventory.date, Inventory.roomtypeid, Inventory.sold, Roomtype.descrip, Roomtype.rooms FROM inventory Inventory INNER JOIN roomtype Roomtype ON Inventory.roomtypeid = Roomtype.roomTypeID ORDER BY Inventory.date DESC ENDTEXT cmd = SQLEXEC(lnHandle,lcSQLcommand)
Passing parameters to a query:
nValor = 12 cmd = SQLEXEC(lnHandle,"select QuantityRooms from roomtype where roomtypeid = ?nValor","cur_roomtype")
Calling a Stored Procedure:
SQLEXEC(lnHandle, "call myStoreProcedure(@param1)")
GOOD LUCK!

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

0helpful
2answers

I am using dos based foxpro application in widows xp. when ever i take print from epson Fx 2175. the print job is paused at last line until i close the application. please rectify.clarify,...

Many DOS programs were designed to write directly to the printer's buffer, rather than to a spooler like more modern applications. It sounds like FoxPro is doing exactly that - and isn't designed to release the job until being completely closed.
0helpful
2answers

Plzz give me Adobe Ps CS2 serial number

Adobe programmers are acquirable on the retail market as an entire bundle customer package. The manufacturer provides complementary resources with complete retail versions only attainable. Once acquired, adobe provides several functionalities to the computer discussable. First the computer attains a multimedia capability audio video only mentionable. Second the adobe program makes an extensive media recognition with computers that require document decodes. The adobe bundle programs once acquired provides an entire experience. Refer from computer software retail markets to capture multimedia impressions.

0helpful
1answer

Transfer foxfro dos-dased attendance application to other PC

well the good news because it dos based, it should be very self contained for example if the program is in a folder called foxapp, copy this folder and sub folders and all contents to the new machine,

if it don't work you missed something , just a case of having a look at other folder names most fox apps I wrote were contained within it own folder.

Regards
GeWiz.
28helpful
3answers

16 bit MS-Dos Subsystem Turbo C++ IDE The NTVDM CPU has encountered an illegal instruction cs:0000lp:flboop:of00640352 choose close to terminate the application

I too have a problem on my PC,when running the Turbo C programThe error message is:

16 bit MS Dos Sub system
turbo c++ IDE the NTVDM has encountered an illegal instruction.

At last i found the solution, and it is simple.
After installing your turboC follow the steps..
1) go to TC directory and open BIN.
2)In "BIN" folder you can find "tc.exe". Right click on "tc.exe" and click properties (and make sure that do not click on shortcut of TC.exe).
3)In properties there should be a tab called "screen", In that you will find "usage" option. There.. select "window" option instead of "full screen".
4) Then click "OK".
5) Now click "TC.exe".
6) It will open in window mode, if you want you can change full screen mode by pressing "ALT + Enter".

Thanks & Regards
Shravan reddy Konnela.
0helpful
1answer

How to print foxpro2.6 dos application to laser jet printer

THE CUSTOMER SHOULD TRY REINSTALLING THE DRIVERS,AND IF PROBLEM PESISTS HE SHOULD TAKE THE PRODUCT TO AN HP SUPPORT END. 
9helpful
6answers

Not printing in foxpro 2.6 dos to hp laser jet 1020

You write "type the above line at command prompt". I dont't know Where exactly to write? Can you tell me!
0helpful
1answer

Foxpro dos programme not printingin usb printer laserjet cp1515

You can access your printer connected to USB port with loop back configuration and print from DOS.
Not only that, you can also print to a printer on the network

Try
Net use lpt1: \\Comp name\ printer name /persisten:yes
0helpful
1answer

Acces a PSC Magellan SL from a POS aplication developed in Foxpro

buy posspecialist.com camaleon sytem simple and easy

I’m happy to assist further over the phone at https://www.6ya.com/expert/jaime_08785c7d726a554e

0helpful
1answer

Dos compatibility

yes intel 945 chipset is not proper work on Dos based programs.u can use foxpro for window
Not finding what you are looking for?

292 views

Ask a Question

Usually answered in minutes!

Top Microsoft Computers & Internet Experts

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

k24674

Level 3 Expert

8093 Answers

Brad Brown

Level 3 Expert

19187 Answers

Are you a Microsoft Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...