Search found 72 matches

by Behnood
Sun Mar 12, 2006 8:13 pm
Forum: General Discussion
Topic: VB.Net Sucks - - PureBasic Works :-)
Replies: 45
Views: 9671

as i know it's not possible to compile that code to 11KB stand alone exe with vb! by using .net framework, sure it will be 20MB+11KB! by the way every tools have their own pros and negs. but remember that no one care about that 20MB .net framework until their programs work.
by Behnood
Thu Mar 02, 2006 1:38 pm
Forum: Off Topic
Topic: sellig software and lecensing issues
Replies: 8
Views: 2141

thnaks so much for your quick and useful help
by Behnood
Thu Mar 02, 2006 5:35 am
Forum: Off Topic
Topic: sellig software and lecensing issues
Replies: 8
Views: 2141

so you mean if i put the down loadable version on a site , the license agreement must be sign(click) before download?
by the way right now I'm not at something like shareware but that's good to know.
so if i just make a license agreement that fit what i want it's enough?
regards
by Behnood
Thu Mar 02, 2006 5:33 am
Forum: Off Topic
Topic: sellig software and lecensing issues
Replies: 8
Views: 2141

sorry
by Behnood
Wed Mar 01, 2006 8:53 pm
Forum: Off Topic
Topic: sellig software and lecensing issues
Replies: 8
Views: 2141

almost disappointed! i though there is so many developers and they may be have something for me.
any way still waiting
regards
by Behnood
Wed Mar 01, 2006 2:22 pm
Forum: Off Topic
Topic: sellig software and lecensing issues
Replies: 8
Views: 2141

sellig software and lecensing issues

hi
i didn't sell any software as an individual yet. but recently i finished a program (in vb by the way) that some of our partners are interested about it.
as i didn't now much about licensing issues, i need information about this. do i have to get a lawyer or something like that, register it ...
by Behnood
Tue Feb 28, 2006 9:11 pm
Forum: Off Topic
Topic: Germans: Ready to see Argentina win the soccer world cup?
Replies: 28
Views: 5014

you know, i thing this thread is for those who care!
by Behnood
Tue Feb 28, 2006 6:17 pm
Forum: Off Topic
Topic: Germans: Ready to see Argentina win the soccer world cup?
Replies: 28
Views: 5014

Germans are always good at their home even when they don't have the best team. don't forget the history!
even i guess Germany will be come champion but i like France and ZZ to win.
by Behnood
Sun Feb 26, 2006 12:23 pm
Forum: The PureBasic Editor
Topic: PB Editor, print command
Replies: 9
Views: 6190

PB Editor, print command

it's not a big issue or a problem any way. but it will be good if we can print source code within the editor(almost all ide have this command in file menu)
by Behnood
Fri Feb 24, 2006 6:08 pm
Forum: Coding Questions
Topic: [Newby] About Date
Replies: 18
Views: 4967

@buzzqw
why you tried to subtract 1/1/1970?! cause i think date() will return zero for that date (it's the base date) so how many seconds past after 1/1/1970 until 1/1/1970? sure zero (infact it's what i think must be)
by Behnood
Fri Feb 24, 2006 3:52 pm
Forum: Coding Questions
Topic: [Newby] About Date
Replies: 18
Views: 4967

in my post, didn't i mention that the seconds will be count from 1st jan 1970?
wish to be helpful
by Behnood
Fri Feb 24, 2006 3:50 pm
Forum: Coding Questions
Topic: [Newby] About Date
Replies: 18
Views: 4967

as i know every software has its own base for date calculation. some take 1900 as a base (like ms products)
it's up to programmer and what he needs actually. cause dealing with date can be so hard. for example how i can find which day of week was 5000bc?!;-) there will be 2 answers, exact one and ...
by Behnood
Fri Feb 24, 2006 3:30 pm
Forum: Coding Questions
Topic: [Newby] About Date
Replies: 18
Views: 4967

for finding days between 2 dates you can just use this:

date1=ParseDate("%yyyy/%mm/%dd", "2004/03/01")
date2=ParseDate("%yyyy/%mm/%dd", "2006/01/24")
date_bet=date2-date1

it will return seconds between date easily. so calculating days will be no matter then.

if you need precise answer (i mean ...
by Behnood
Fri Feb 24, 2006 2:46 pm
Forum: General Discussion
Topic: GUI creation for PB?
Replies: 15
Views: 4608

look at this tool, i think it can be helpful
http://www.gtk.org/
by Behnood
Fri Feb 24, 2006 12:49 pm
Forum: Coding Questions
Topic: [Newby] About Date
Replies: 18
Views: 4967

just look at the date command of date library in General Libraries section of purebasic manual.
it's completely covers what you need