Search found 23 matches

by Pelluso
Tue Sep 23, 2008 2:48 pm
Forum: General Discussion
Topic: Purebasic Developer
Replies: 3
Views: 1314

I was wondering on finding someone on rentacoder but here i can find a pb expert.

As i want my app coded with Purebasic i think this is the best place.

If someone is interested please send me a portifolio of your programming skills and i will send you a database model so you can set a fair price ...
by Pelluso
Tue Sep 23, 2008 2:27 pm
Forum: General Discussion
Topic: Purebasic Developer
Replies: 3
Views: 1314

Purebasic Developer

DESKTOP INTERFACE DESIGNER

I need someone that could design an outstanding financial app using Purebasic and Cheetah ( DBF engine )
Advanced skills on WINDOWS API will be requeired because the use of Purebasic.

These are app's main modules

Invoices to Pay
Invoices to Receive
Banks
Cash Flow

This ...
by Pelluso
Fri Mar 07, 2008 2:36 am
Forum: Coding Questions
Topic: MDIGadget "real world" example
Replies: 20
Views: 2911

Netmaestro your code is greate !

I added another menu item and checked that this is not working

Code: Select all

SetActiveWindow(1)
and changed with this

Code: Select all

SetGadgetState(0,1)
and is working pretty well

thanks
by Pelluso
Thu Mar 06, 2008 11:32 pm
Forum: Coding Questions
Topic: MDIGadget "real world" example
Replies: 20
Views: 2911

Thank you all !

Netmaestro , Sparkie , Srod , Baldrick !

Now everything is OK !

Cheers
by Pelluso
Thu Mar 06, 2008 2:21 am
Forum: Coding Questions
Topic: MDIGadget "real world" example
Replies: 20
Views: 2911

It is still flickering !

The child window "opens" with its original size then resizes causing flickering !

I will try something later ...
by Pelluso
Thu Mar 06, 2008 1:51 am
Forum: Coding Questions
Topic: MDIGadget "real world" example
Replies: 20
Views: 2911

Did not worked !

That a look !

Click Cadastro->Históricos

Enumeration
#Window_0
EndEnumeration

Enumeration #PB_Compiler_EnumerationValue
#MenuBar_0
EndEnumeration

Enumeration #PB_Compiler_EnumerationValue
#MenuItem_0
#MenuItem_1
#MenuItem_2
#MenuItem_3
#MenuItem_4
#MenuItem_5 ...
by Pelluso
Thu Mar 06, 2008 1:27 am
Forum: Feature Requests and Wishlists
Topic: Datagrid
Replies: 21
Views: 9132

A datagrid just like Powerbuilder's datawindow would be perfect !
by Pelluso
Thu Mar 06, 2008 1:23 am
Forum: Coding Questions
Topic: MDIGadget "real world" example
Replies: 20
Views: 2911

This is just an example ...

On my real code MDI is opened then when i click a menu item i open a child ...

You know what i mean ...
by Pelluso
Thu Mar 06, 2008 1:02 am
Forum: Coding Questions
Topic: MDIGadget "real world" example
Replies: 20
Views: 2911

Netmaestro ,

Could you explain why child window flicks if i set it invisible ?

Enumeration
#Window_0
EndEnumeration

Enumeration
#MDIGadget
#Historicos
EndEnumeration

If OpenWindow(#Window_0, 0, 0, 800, 600, "" )
If CreateGadgetList(WindowID(#Window_0))
MDIGadget(#MDIGadget,0,0,0,0,7,1 ...
by Pelluso
Thu Mar 06, 2008 12:52 am
Forum: Coding Questions
Topic: MDIGadget "real world" example
Replies: 20
Views: 2911

What a shame !

So easy , many thanks netmaestro !
by Pelluso
Wed Mar 05, 2008 11:35 pm
Forum: Coding Questions
Topic: MDIGadget "real world" example
Replies: 20
Views: 2911

I got a tip from Srod and removed this line

SetWindowLong_( wHnd, #GWL_STYLE, GetWindowLong_(wHnd, #GWL_STYLE) & ~(#WS_SIZEBOX|#WS_MAXIMIZEBOX) )

and changed this

AddGadgetItem(#MDIGadget,#Historicos,"Históricos")

by this

AddGadgetItem(#MDIGadget,#Historicos,"Históricos",0,#PB_Window ...
by Pelluso
Wed Mar 05, 2008 11:09 pm
Forum: Coding Questions
Topic: MDIGadget "real world" example
Replies: 20
Views: 2911

Many Thanks ,

I apreciate your help , but please no RTFM :oops:

Another question how can i set width and height of the "child window" ?

I have already remove resize and maximize button with this

wHnd = AddGadgetItem(#MDIGadget,#Historicos,"Históricos")
SetWindowLong_( wHnd, #GWL_STYLE ...
by Pelluso
Tue Mar 04, 2008 11:49 pm
Forum: Coding Questions
Topic: MDIGadget "real world" example
Replies: 20
Views: 2911

MDIGadget "real world" example

Hi guys ,

Sorry about my newbie question but anyway ...

I would like to see a "real world" app with mdigadget

For instance a main app with a menu items that will record app users, holidays and clients.
When i click a particular menu item then addgadgetitem with gadgets of this "window" and when ...
by Pelluso
Thu Feb 21, 2008 9:16 pm
Forum: Coding Questions
Topic: MessageRequester Default Button
Replies: 2
Views: 738

Many Thanks Sparkie !
by Pelluso
Thu Feb 21, 2008 2:51 am
Forum: Coding Questions
Topic: MessageRequester Default Button
Replies: 2
Views: 738

MessageRequester Default Button

Hi Guys,

Well i think this is a very newbie question , but anyway ...

If MessageRequester ( "Attention" , "Wish to quit ?" , #PB_MessageRequester_YesNo ) = #PB_MessageRequester_Yes
End
EndIf

How can i make the "No Button" to be the "default button" when messagerequester is executed ?

By ...