Search found 13 matches

by LDSang
Thu Jun 19, 2008 9:32 pm
Forum: PureFORM & JaPBe
Topic: jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Replies: 1545
Views: 680491

Okay, I got really sick and tired of getting this resource error constantly on files that had nothing to do with the icon, but gave the same error. I ended up going thru the registry and other resource files and I finally found a file called "Resource.out" saved in the following location (for a ...
by LDSang
Mon Jun 16, 2008 8:55 pm
Forum: PureFORM & JaPBe
Topic: jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Replies: 1545
Views: 680491

Sure. Here's a link to the icon:
http://www.box.net/shared/jkeshdzwg0
Oh and adding the icon seems to work. It creates the exe with the icon and it works fine as far as I can tell, just gives the error for some reason. Sorry, I could not reproduce the problem with your icon either. Maybe some ...
by LDSang
Fri Jun 13, 2008 5:05 pm
Forum: PureFORM & JaPBe
Topic: jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Replies: 1545
Views: 680491

jaPBe uses PORC to add an icon to a project. I don't know how the PB IDE does it.
Anyway, I never had an issue with this feature. Could you post a link to this icon ? I can only reproduce this error if I use an invalid file (not a valid icon).
Sure. Here's a link to the icon:

http://www.box.net ...
by LDSang
Fri Jun 13, 2008 3:05 am
Forum: PureFORM & JaPBe
Topic: jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Replies: 1545
Views: 680491

Thanks for the project instructions! Got another issue. When I include an icon through the Compiler Options in the PureBasic IDE everything compiles ok and I can create an exe with the icon on it. When I include the icon through the Project options in jaPBe for the same file I get the following:

21 ...
by LDSang
Wed Jun 11, 2008 8:14 pm
Forum: PureFORM & JaPBe
Topic: jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Replies: 1545
Views: 680491

Using Projects

Hello All. Forgive me if this has been discussed, but I haven't gone thru all 64 pages of this thread. Does anyone have instructions on how to create and use projects? I'm not sure how to include files in a project. The manual says
"The file list, where every name of all open source code files is ...
by LDSang
Mon May 19, 2008 8:27 am
Forum: PureFORM & JaPBe
Topic: PureFORM 1.99 (yet another FORM designer)
Replies: 1537
Views: 588429

Re: Adding gadgets to a panel

No, simply switch to the desired tab and draw the new gadgets on the tab client area.

Okay, I know I'm not going nuts but I just tried it to confirm and it worked? I spent about 20 minutes trying a few days ago and I know that everytime I went to add a gadget on the tab it would add it, but when ...
by LDSang
Sat May 17, 2008 11:09 pm
Forum: PureFORM & JaPBe
Topic: PureFORM 1.99 (yet another FORM designer)
Replies: 1537
Views: 588429

Adding gadgets to a panel

Hey I have a question about adding gadgets to a panel. I Have a window with a panel gadget in it that has 5 tabs. I originally added gadgets in each tab as I created them and it worked perfectly. After doing a bunch of coding, I added a couple of text gadgets after going to the tab in the panel I ...
by LDSang
Wed Mar 26, 2008 11:39 pm
Forum: PureFORM & JaPBe
Topic: PureFORM 1.99 (yet another FORM designer)
Replies: 1537
Views: 588429

gnozal wrote:In PureFORM, a lot of functions are called via the right-click context menu.
Simply right-click on a gadget you wish to change the tab order. The tab order dialog will appear and display all gadgets with the same parent.
Thanks! I was looking through the top menu, which is why I couldn't find it.
by LDSang
Tue Mar 25, 2008 10:23 pm
Forum: PureFORM & JaPBe
Topic: PureFORM 1.99 (yet another FORM designer)
Replies: 1537
Views: 588429

I hope this doesn't seem like a silly question, but I've been looking for a couple hours and I can't seem to figure out how to set the tab order! I found the tab order window referenced in the PureFORM help, but it doesn't tell how to bring the tab order window up! I figure the answer may be in the ...
by LDSang
Thu Mar 06, 2008 10:59 pm
Forum: General Discussion
Topic: Calculate age procedure
Replies: 13
Views: 5802

This is how I've been doing it. Kinda simple, but it works.


Enumeration
#year
#month
#day
EndEnumeration

; This assumes "birthday" comes in the format
; "yyyy-mm-dd" as in "2004-04-15"
Procedure get_age(birthday$)
byear = Val(StringField(birthday$, #year+1, "-"))
bmonth = Val(StringField ...
by LDSang
Fri Feb 22, 2008 7:25 pm
Forum: Coding Questions
Topic: List inside a structure workaround
Replies: 8
Views: 2151

Fair enough,

On the SQLite thing though, you can have multiple concurrent queries, you can only have one write operation at a time though (update, insert, delete etc) Selects are fine.

So how do you do the multiple concurrent queries in PureBasic for SQLite? It seems like the commands only ...
by LDSang
Wed Feb 20, 2008 7:57 am
Forum: Coding Questions
Topic: List inside a structure workaround
Replies: 8
Views: 2151

If this all goes to disk anyway, just use a DB then query it when you need the info.

I thought about doing this but then I thought I may have more than one query at a time, and the db functions (I'm using SQLite) seem to reference the entire database handle as opposed to the last result.

I was ...
by LDSang
Mon Feb 18, 2008 8:48 pm
Forum: Coding Questions
Topic: List inside a structure workaround
Replies: 8
Views: 2151

List inside a structure workaround

Hello everyone. I've been using PureBasic for a few years now and just ran into a problem. Suppose I want to do a structure with people who own a number of homes for example. I have no idea how many homes. They could be a family person with 1 home, an investor with 10 homes, or Donald Trump. This is ...