Search found 8184 matches

by D.J.Peters
Oct 10, 2005 18:23
Forum: Linux
Topic: New FreeBASIC online tutorial in Linux programming.
Replies: 17
Views: 9649

Hello jcohen,
the first next lessions all about the XLib.

Please write an tutorial about the fuse.bi usage too.

Joshy
by D.J.Peters
Oct 10, 2005 17:34
Forum: Linux
Topic: Error compiling current CVS snapshot?
Replies: 29
Views: 12589

No it seams to be "/usr/share/freebasic/lib/linux/crtn.o" makes trouble. What is the current ld and as version from FB? i get this joshy:$ /usr/share/freebasic/bin/linux/ld -version GNU ld version 2.15 Copyright 2002 Free Software Foundation, Inc. joshy:$ /usr/share/freebasic/bin/linux/as ...
by D.J.Peters
Oct 10, 2005 17:28
Forum: Windows
Topic: SendMessage declared wrong
Replies: 31
Views: 9438

I don't use Windows to day but is "SendMessageW" the unicode declare ?
For a long time ago if i use windows with Assembler and VB i use everytime "SendMessageA"

joshy
by D.J.Peters
Oct 10, 2005 16:55
Forum: Linux
Topic: Error compiling current CVS snapshot?
Replies: 29
Views: 12589

thank you very mutch for this hint.

joshy
by D.J.Peters
Oct 10, 2005 16:09
Forum: Linux
Topic: Error compiling current CVS snapshot?
Replies: 29
Views: 12589

I use the 0.15b testing release aug/29/2005 any idea what goes wrong in the linking part.

Joshy
by D.J.Peters
Oct 10, 2005 16:01
Forum: Linux
Topic: New FreeBASIC online tutorial in Linux programming.
Replies: 17
Views: 9649

Hello Garvan, i compile all my FreeBASIC things with the right mouse button i have one entry for console apps one for FB libgfx2 apps and but last not least an entry for X11 apps and this entry has the -p /usr/lib/X11 included. For OpenGl apps i need add an other -p /includepath. Short i have never ...
by D.J.Peters
Oct 10, 2005 8:19
Forum: Linux
Topic: New FreeBASIC online tutorial in Linux programming.
Replies: 17
Views: 9649

New FreeBASIC online tutorial in Linux programming.

(Again sorry for this english) On my forum http://fbforum.de/forum/viewtopic.php?t=152 i started an online tutorial in Linux programming with FreeBASIC. Every day i will post an new example. (XLib, client / server network, multimedia video/sound playback and the kernel API and many C Lib stuff. It i...
by D.J.Peters
Oct 08, 2005 23:36
Forum: Linux
Topic: Syntax highlighting for Katepart (KDE)
Replies: 9
Views: 5983

Realy useful work.

If i use the shell in Kate what is the token vor the curent file in Kate?

fbc %f

don't work.

Thanx for any info.

Joshy

EDIT: The terminal emu is Konsole without any %filenam% or %directoty% from Kate Image
by D.J.Peters
Oct 08, 2005 23:10
Forum: Linux
Topic: Error compiling current CVS snapshot?
Replies: 29
Views: 12589

If i try to compile the curent cvs snapshot i get this link error message what can it be. "/usr/share/freebasic/lib/linux/crtn.o" obj/linux/fbc.o(.text+0x3d8): In function `INITTARGET': : undefined reference to `FBCINIT_LINUX' Thanx for any help. Joshy make fbc -v -d TARGET_LINUX obj/linux...
by D.J.Peters
Oct 08, 2005 16:58
Forum: General
Topic: Strange compiler error..
Replies: 2
Views: 1329

Hello MisterD, it works right for me http://www.FBForum.de/images/denk.gif but not tested with real opengl includes. (linux fb 0.15b) Joshy type vertex3f x as single y as single z as single end type declare sub setCameraPos overload(posx as single, posy as single, posz as single, _ posb as single, p...
by D.J.Peters
Oct 07, 2005 21:53
Forum: Sources, Examples, Tips and Tricks
Topic: Play a litle bit with physic.
Replies: 20
Views: 18634

Sorry but on my linux box with FB 0.15 it looks not cooler

Joshy
by D.J.Peters
Oct 07, 2005 20:57
Forum: Sources, Examples, Tips and Tricks
Topic: Play a litle bit with physic.
Replies: 20
Views: 18634

Only for fun Joshy option explicit 'change it const scr_w as integer = 640 const scr_h as integer = 480 const maxstrings as integer = 50 'Number of strings const maxpoints as integer = 50 'Points per string const stiffnes as single = 40 'an smaller value make the strings more softly thus also longer...
by D.J.Peters
Oct 07, 2005 14:48
Forum: Linux
Topic: how can i compile my file with fbc?
Replies: 9
Views: 5555

Hello don't use the -c option.

This option means don't make an executable program Image
Joshy
Image
by D.J.Peters
Sep 28, 2005 0:58
Forum: Sources, Examples, Tips and Tricks
Topic: Play a litle bit with physic.
Replies: 20
Views: 18634

Hello mambazo,
the collection of papers are very good.

Thanx for this.

Joshy
by D.J.Peters
Sep 28, 2005 0:47
Forum: General
Topic: Memory Problems.
Replies: 5
Views: 1238

Or without ubound. Joshy Option Explicit Option Dynamic Type MyType Num1 As Long Num2 As Long End Type Dim Shared MyArray() As MyType Dim LastMember as integer function AddNewElement() as integer static NumOfMembers as integer Redim Preserve MyArray(NumOfMembers+1) As MyType 'only to test it MyArray...