Page 3 of 3

Posted: Fri Jul 15, 2005 10:18 pm
by mlwhitt
Didn't offend me. I was just stating what I think dagcrack was getting at. I can see where he is coming from. There is a lot of people with only 1 or 2 postings on here that start new threads about PureVision. But that could because like me a lot of new people pick up PVXP at the same time they do PB. But I completely understand where he is coming from. I don't think he was calling you fake only trying to make that point.
jb wrote:
I think what dagcrack is saying is that people with very few postings (heck even myself as I don't even have 50 yet) can look very questionable when they come into a thread and start praising a product that is being discussed.
I did not mean to offend anyone on the forum and I apologize if I have.

I was just expressing the fact that I found the PureVision product could be a worthwhile and helpful tool for me. I would not expect it to be for everyone as we all have our own styles and preferences.

I have been dabbling in PureBasic for a year now. I joined the forum July 14th, 2004. No, I have not made a lot of postings however I read the forums on a regular basis to know what is happening with PureBasic and to search for answers when I have questions. It is only by reading these forums and the discussions within that prompted me to look into PureVision. I have been very content using the standard PureBasic IDE and the Visual Designer and find them to be excellent products. I also think that supporting a PureBasic commercial product (if it is right for you) is good for PureBasic itself.

I am not a fake user, just a new user. Sorry to cause any controversy.

Posted: Fri Jul 15, 2005 11:27 pm
by Dare2
I am a fake user. But I made lots of posts like this one and now people think I am real.


postcount+1

Posted: Sat Jul 16, 2005 2:07 am
by mlwhitt
We all know you are just faking, ha ha.
Dare2 wrote:I am a fake user. But I made lots of posts like this one and now people think I am real.


postcount+1

Posted: Sat Jul 16, 2005 8:30 pm
by dagcrack
Now we know, those who jumped covering their butts... those should be investigated!


Skins? come on... COME..ON! If theres anything I would kill for, is for erradicating skinned applications, holy balls if I'd kill for that!!, Its just annoying!, skins are for teenager girls and repressed homosexuals!.

...

What?.. you're hating me now?, I'm a guy who likes to make jokes out of something even if I end up laughting alone. < dont use that as a statement for your replies.

:lol: My point is simply that TO ME it is not a holy tool, what is the problem with that, I dont know, you guys said it.. everyone with his own tools, thats all. - About the fake users, I still have reasons to believe in that and about the homosexual guys loving the skinned applications.. THEY LOVE THEM! its true, and teenagers loves them too, yes.. its a good marketing solution, also...to cover the leaks and lack of originality of your applications.. skins will do, only if you hire an artist though. I know most programmer's art is worth less than flat girls in a bikini parade.


(Do you sense my "I want to discuss about many subjects at the same time and create some controversy" ? ). Most of what I say is subject of jokes, or simply a "talk".. if you take it seriously and start kicking your keyboard while polishing your 9mm, then I think you got the wrong side of the paper.

For sure you'll see some skinned tools from me at the future - But that wont be hypocrisy though... You got to please the crowd sometimes.


Till then.. dont cry because I used a small font size!

Posted: Mon Aug 01, 2005 1:21 am
by GeoTrail
dagcrack wrote:Then tell me why is purevision so good for you.. I tried it and I dont see anything I couldnt do before.. Its just a tool for lazy people ? yet..
Well than I'm a REALLY lacy person, 'cause I really love Purevision. The only thing I 'kinda hate' about it is the serial thing. I do ALOT of OS and other testing on my machine, right now I'm been testing Vista for a few days and needed to re-install Purevision, then I have to email Paul for a new key, bet he must know my email addy by heart by know. hehehehe ;) But that's just a nusance, oh, been drinking a few beers righjts now so I'ms omething seems weird in my typing, LIVE WITH IT hehehehe ;) :lol:

Posted: Mon Aug 01, 2005 2:23 am
by oldBear
Nice to hear about key refreshes cause I rebuild my OS every couple of months and will need "refreshed" keys.

Just purchased a few days ago and planning on my next OS build next week, after some new hardware is delivered, so maybe key will still be good:)

So far, liking PV just fine - seems to do just what it claims.
Made resizing my window a piece of cake (yes I'm lazy, but that's another reason I don't code in assembler anymore).

cheers

Posted: Thu Oct 06, 2005 2:39 pm
by NoahPhense
From inside PureVision, is there way to control what gets tabbed or not?

I see the tab order. But it just orders them. Or do I have to edit my
code for that?

- np

Posted: Thu Oct 06, 2005 2:50 pm
by GeoTrail
Think you need to code the tab events yourself, haven't really used tab interface in my programs yet so I could be wrong :)

Posted: Thu Oct 06, 2005 3:02 pm
by NoahPhense
GeoTrail wrote:Think you need to code the tab events yourself, haven't really used tab interface in my programs yet so I could be wrong :)
I don't mean tab control. Just the tabbing through controls ..

I.E.

Code: Select all

    If CreateGadgetList(WindowID(#Window_formMain))
      ; These three buttons are the only thing I want in the Tab Order
      ButtonGadget(#Gadget_formMain_btn_refresh,215,25,60,20,"refresh",$8000)
      ButtonGadget(#Gadget_formMain_btn_previousrecord,20,260,125,20,"<---",$8000)
      ButtonGadget(#Gadget_formMain_btn_nextrecord,150,260,125,20,"--->",$8000)
      
      Frame3DGadget(#Gadget_formMain_frame_Main,10,10,275,280,"Last NSS File")
      TextGadget(#Gadget_formMain_static_eventname,20,35,135,15,"Event Name")
      TextGadget(#Gadget_formMain_static_eventtype1,20,75,130,15,"Event Type 1")
      TextGadget(#Gadget_formMain_static_eventtype2,20,115,130,15,"Event Type 2")
      TextGadget(#Gadget_formMain_static_eventroom,20,155,130,15,"Event Room")
      StringGadget(#Gadget_formMain_str_eventname,20,50,255,20,"",#PB_String_ReadOnly)
      StringGadget(#Gadget_formMain_str_eventtype1,20,90,255,20,"",#PB_String_ReadOnly)
      StringGadget(#Gadget_formMain_str_eventtype2,20,130,255,20,"",#PB_String_ReadOnly)
      StringGadget(#Gadget_formMain_str_eventroom,20,170,255,20,"",#PB_String_ReadOnly)
      TextGadget(#Gadget_formMain_static_eventtimes,20,195,65,15,"Event Times")
      TextGadget(#Gadget_formMain_text_starttime,20,210,40,20,"0000",#PB_Text_Center|#PB_Text_Border)
      TextGadget(#Gadget_formMain_text_endtime,60,210,40,20,"0000",#PB_Text_Center|#PB_Text_Border)
      TextGadget(#Gadget_formMain_static_numpeople,220,195,55,15,"No. People",#PB_Text_Right)
      TextGadget(#Gadget_formMain_text_numpeople,235,210,40,20,"0000",#PB_Text_Center|#PB_Text_Border)
      TextGadget(#Gadget_formMain_text_recordnumbers,20,235,255,20,"Record :: 0 of 0",#PB_Text_Center|#PB_Text_Border)
      TextGadget(#Gadget_formMain_static_developedby,60,295,175,15,"static_developedby",#PB_Text_Center)
      TextGadget(#Gadget_formMain_static_emailaddress,60,315,175,15,"static_emailaddress",#PB_Text_Center)
      HideWindow(#Window_formMain,0)
      ProcedureReturn WindowID()
I only want the three buttons to be tab'able .. ??

- np