Search found 15 matches

by ivega718
Mon Mar 21, 2022 7:37 pm
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 726
Views: 281912

Re: IceDesign GUI designer

[img]file:/C:/PUREBASIC64/PB.JPG[/img]

I don't know how insert a image as sample...but basically es fill the section of Compiler Options/Version Info...only fields marked with *
by ivega718
Sun Mar 20, 2022 9:41 am
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 726
Views: 281912

Re: IceDesign GUI designer

In my case it also appears to me as if IceDesign had a virus or is suspicious. In my applications with PB noticed that if I add resource information, the antivirus does not mark it as suspicious.
Does your IceDesign project have that enabled when you compile it?

I tested with Panda and Falcon ...
by ivega718
Mon Oct 15, 2018 5:07 pm
Forum: Coding Questions
Topic: Alternative to Excelwriter? (without COMate)
Replies: 9
Views: 2422

Re: Alternative to Excelwriter? (without COMate)

I am using LIBXL for Excel Files.

http://www.libxl.com/
by ivega718
Mon May 14, 2018 11:34 pm
Forum: Coding Questions
Topic: Decode e.g. docx via an iFilter?
Replies: 2
Views: 976

Re: Decode e.g. docx via an iFilter?

You can read a file DOCX, XLSX, PTTX
Just rename the file to ZIP extension and unzip it. Then open the text files that the file has. Inside you will also find image files or others. The format of the information is in XML that can be read with many tools of this forum.
by ivega718
Wed Oct 18, 2017 9:25 pm
Forum: General Discussion
Topic: Why I had to stop using PureBasic
Replies: 154
Views: 68513

Re: Why I had to stop using PureBasic

This code causes me a false positive with McAfee Antivirus using PureBasic v5.61 32 Bits but compile fine with PureBasic v5.61 64 bits.


EnableExplicit

Define Null.l

If OpenWindow(0, 0, 0, 120, 100, "ButtonImage", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
ButtonGadget(0,10,10,100,20 ...
by ivega718
Thu Nov 03, 2016 2:27 am
Forum: Coding Questions
Topic: Reading a PowerBASIC dll
Replies: 10
Views: 3629

Re: Reading a PowerBASIC dll

You can sent me you email to ivega718@hotmail.com and I can sent you the VegaEval.Dll

Israel Vega Alvarez
by ivega718
Thu Nov 03, 2016 1:06 am
Forum: Coding Questions
Topic: Reading a PowerBASIC dll
Replies: 10
Views: 3629

Re: Reading a PowerBASIC dll

I was have this problem and I this was answer:

http://www.purebasic.fr/english/viewtop ... t=vegaeval
by ivega718
Mon Dec 07, 2015 7:29 pm
Forum: Coding Questions
Topic: Btree+ Index Manager
Replies: 0
Views: 2958

Btree+ Index Manager

Hi, I am looking a good BTree+ Index Manager for use with PureBasic and that working fine in
64 Bits. if anyone can recommend me some. Before I was working with PowerTree (of PowerBasic) with RANDOM files.

Thanks


ivega718
by ivega718
Sat Jul 25, 2015 9:30 pm
Forum: Coding Questions
Topic: I can not return a string of a external DLL
Replies: 5
Views: 3966

Re: I can not return a string of a external DLL

This forum is great. Many thanks for your support.
Now works well with strings. The next thing will be to write this
utility in PureBasic.

Now also is possible use:

SetTextValue ("VAR1$","ISRAEL VEGA ALVAREZ",1)
ExeBasic ("VAR2$=VAR1$",0,1)
ExeBasic ("VAR3$=LEFT$(VAR2$,5)",0,1)
SetTextValue ...
by ivega718
Sat Jul 25, 2015 12:19 am
Forum: Coding Questions
Topic: I can not return a string of a external DLL
Replies: 5
Views: 3966

Re: I can not return a string of a external DLL

I am using PowerBasic Compiler for make DLL...but need use from PureBasic.

my DLL can be download from:

http://www.vegasistemas.com.mx/vegabasic.html
by ivega718
Fri Jul 24, 2015 11:40 pm
Forum: Coding Questions
Topic: I can not return a string of a external DLL
Replies: 5
Views: 3966

I can not return a string of a external DLL

Please if somebody can help me...I am try and I not know how execute a function that retunrn a string. I was try using
prototype's...with numeric values is working fine...but with string I not know how...All function execute and working fine
returning correct values...only have problem with return ...
by ivega718
Fri Mar 01, 2013 7:20 am
Forum: Coding Questions
Topic: for...next...step
Replies: 6
Views: 1196

Re: for...next...step

This forum is wonderful...I am learning and more I know I like this compiler...

Now is working fine...

Thanks
by ivega718
Fri Mar 01, 2013 4:01 am
Forum: Coding Questions
Topic: for...next...step
Replies: 6
Views: 1196

for...next...step

How I can do that variable incr in decimal values?


Define X.d
For X.d=1 To 2 Step .5
MessageRequester ("",Str(X.d))
Next X.d



Define x.d
x.d=0
Repeat
x.d=x.d + .5
MessageRequester("",Str(x.d))
Until x.d=3


This not compile...somebody know of other alternative?

sorry...I am new in ...
by ivega718
Tue Feb 26, 2013 1:47 am
Forum: Coding Questions
Topic: COMMAND$ and OPEN ...for RANDOM in other BASIC's
Replies: 6
Views: 1104

Re: COMMAND$ and OPEN ...for RANDOM in other BASIC's

Thanks to all.

I believe that ProgramParameter() resolve the COMMAND$.

COMMAND$ is used in other BASIC compiler's for extract the parameter of a application when is executed.

By example:

PROG.EXE filename.txt


I will see more about of files.
by ivega718
Tue Feb 26, 2013 12:09 am
Forum: Coding Questions
Topic: COMMAND$ and OPEN ...for RANDOM in other BASIC's
Replies: 6
Views: 1104

COMMAND$ and OPEN ...for RANDOM in other BASIC's

Hi, I am new user of PureBasic. Only need know how I can use the COMMAND$ or wich variable is similar.

Also how I can emulate the OPEN...FOR RANDOM in other Basic.

Example:

TYPE EMPLOYES
CODE AS STRING * 10
NAME AS STRING * 60
END TYPE

GLOBAL EMPLOYESX AS EMPLOYES

OPEN "FILE.DAT" FOR RANDOM ...