Search found 89 matches

by I3I2UI/I0
Dec 13, 2005 13:04
Forum: Documentation
Topic: New compilation released..
Replies: 15
Views: 8391

thanks, really helpful.
v1ctor wrote:I changed the layout a bit, should look better now.
a little nice feature for the next Version :))
(style.css)

Code: Select all

..
a:hover {
	text-decoration: underline;
	color: #aa0000;
	cursor: help;
}
..
by I3I2UI/I0
Oct 29, 2005 8:27
Forum: Windows
Topic: LoadIcon and MAKEINTRESOURCE
Replies: 6
Views: 3240

I am using 0.15 on WinME
my *.rc file is ("your.ico" is 16 X 16)

Code: Select all

ICON_1 ICON your.ico
....

Code: Select all

With wCls 
  ... 
  .hIcon= LoadImage(hInstance,"ICON_1",IMAGE_ICON,16,16,LR_COPYFROMRESOURCE) 
  ... 
End With 
it works

BRUNO
by I3I2UI/I0
Sep 20, 2005 19:13
Forum: Sources, Examples, Tips and Tricks
Topic: FB Version 0.14b 0r 0.15?
Replies: 0
Views: 2324

FB Version 0.14b 0r 0.15?

Code: Select all

Option Explicit

Print "FB MAJORVERSION: "; __FB_VER_MAJOR__
Print "FB MINORVERSION: "; __FB_VER_MINOR__
Print " VERSIONS PATCH: "; __FB_VER_PATCH__

Print 
Print  __FB_SIGNATURE__; 
If __FB_VER_MINOR__= 14 Then
  Print
Else
  Print __FB_VERSION__
End If
Sleep
BRUNO
by I3I2UI/I0
Sep 06, 2005 13:28
Forum: Sources, Examples, Tips and Tricks
Topic: FreeBASIC with artistic licence!
Replies: 27
Views: 9220

wow, that's amazing

boooo eyyyy!!
(german slang)

BRUNO
by I3I2UI/I0
Jul 31, 2005 14:26
Forum: General
Topic: Make one library out of two
Replies: 6
Views: 2102

hello Rens,
the deff-file has a bug.
http://forum.qbasic.at/viewtopic.php?p=11336#11336

Read the next pages
see
http://forum.qbasic.at/viewtopic.php?p=11788#11788

BRUNO
by I3I2UI/I0
Jul 30, 2005 12:09
Forum: General
Topic: Making a library if i have a working dll
Replies: 6
Views: 2861

Hello,
inpout32.dll.def:

Code: Select all

LIBRARY "inpout32.dll" 
EXPORTS 
Inp32@4 
Out32@8

Code: Select all

dlltool.exe -k -d  inpout32.dll.def -D inpout32.dll -libinpout32.dll.a
no CDECL in declaration
(for i = 1 to 200: x = inp32(&h201): next)
(use your funktion 115x and the program breaks off)

BRUNO
by I3I2UI/I0
Jul 15, 2005 21:43
Forum: Beginners
Topic: parallel port
Replies: 40
Views: 17256

@Antoni
in win95,98,ME thats work,
http://www.freebasic.net/forum/viewtopi ... =1411#1411

NT,W2K and XP (inpout32.dll) see
http://www.freebasic.net/forum/viewtopi ... =1475#1475

BRUNO
by I3I2UI/I0
Jul 14, 2005 16:19
Forum: Archive
Topic: QBSound 11 July 2005
Replies: 3
Views: 3977

Hello, excuse my bad English I do not know QB. I never code in QBasic. Therefore: I never changed an instrument in QB or others. My interest is to prog in freebasic. Yes, I hear modern music from CD on surround sound. But i love to hear "A Hard Day's Night" from the old Single with knax an...
by I3I2UI/I0
Jul 14, 2005 7:42
Forum: Archive
Topic: QBSound 11 July 2005
Replies: 3
Views: 3977

Hey Randy, excuse my bad English Here is a Music$ from an old Basic Program. PLAY "T120 O2 MN L4 G8.E16CEG>C2E8.D16C<EF+G2G8G8>E4.D8C<B2A8.B16"+_ ">CC<GEC>E8.E16EFGG2F8E8DEFF2FE4.D8C<B2A8B8>C<EF+G2G>CCC8<B8"+_ "AAA>DF8E8D8C8C<B2G8G8>C4.D8E8F8G2C8D8E4.F8DC2" Tell me, wha...
by I3I2UI/I0
Jul 02, 2005 13:27
Forum: Sources, Examples, Tips and Tricks
Topic: PLAY "CDEFGAH" is back
Replies: 9
Views: 7868

Hello, excuse my bad English yes, this forum.qbasicnews.com/viewtopic.php?t=8978 is a great prog, there my PLAY is a very simple Prog. EDIT/ I tested it forum.qbasicnews.com/viewtopic.php?t=8978 . The program has many feather (polyphon, Background etc), but is not simply called with PLAY. Excused, b...
by I3I2UI/I0
Jul 01, 2005 21:25
Forum: Sources, Examples, Tips and Tricks
Topic: PLAY "CDEFGAH" is back
Replies: 9
Views: 7868

PLAY "CDEFGAH" is back

for all PLAY BOYS/GIRLS to PLAY "CDEFGAH" Files: Play.bas sub's für PLAY libPlay.a Play.bi MUSIC.BAS ein sehr altes QBAsic Prog. ; a very old QBAsic Prog. liesmich.txt ; readme.txt - Play Midi Noten Version 0.1- Keine Auswirkung ; No effect MF, MB, MN, ML, MS ; keine Hintergrundmusik ; no ...
by I3I2UI/I0
Jun 20, 2005 7:34
Forum: Sources, Examples, Tips and Tricks
Topic: ten times so fast with inline assembly
Replies: 13
Views: 9462

all in asm.. sub inline_assembler(v() as v2d,byval tx as single,byval ty as Single) Dim lv as UInteger lv= LAST_VECTOR asm mov eax,[v] mov edi,[eax] fld dword ptr [ty] fld dword ptr [tx] mov ebx,0 mov ecx, [lv] L1: fld dword ptr [edi+ebx*8] fadd st(0),st(1) fstp dword ptr [edi+ebx*8] fld dword ptr [...
by I3I2UI/I0
Jun 15, 2005 21:40
Forum: Beginners
Topic: Hardware I/O programming
Replies: 12
Views: 10312

Hello MajorPeabody Unfortunately my English is not good. I need to do a utility program on the PC (Laptop runs XP Pro) that toggles bits on the Printer port. I use the inpout32.dll for w2k and XP. "inpout32.dll.def" LIBRARY "inpout32.dll" EXPORTS Inp32@4 Out32@8 a Batch for the a...
by I3I2UI/I0
Jun 04, 2005 10:33
Forum: Beginners
Topic: asm crashes
Replies: 4
Views: 4442

sorry, (only freeBASIC 0.14b)

Code: Select all

FUNCTION AddFive(ByVal num AS INTEGER) AS INTEGER 
ASM 
    mov eax, [num] 
    add eax, 5 
    mov [FUNCTION], eax 
END ASM 
End FUNCTION 

DIM i AS INTEGER = 4 

PRINT "4 + 5 = "; AddFive(i) 

Sleep