[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/db/driver/mysqli.php on line 264: mysqli_fetch_assoc(): Couldn't fetch mysqli_result
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/db/driver/mysqli.php on line 326: mysqli_free_result(): Couldn't fetch mysqli_result
Pete's QBASIC Site Discuss QBasic, Freebasic, QB64 and more 2010-10-10T20:26:08-05:00 http://petesqbsite.com/phpBB3/app.php/feed/topic/3367 2010-10-10T20:26:08-05:00 2010-10-10T20:26:08-05:00 http://petesqbsite.com/phpBB3/viewtopic.php?p=21116#p21116 <![CDATA[Can anyone post me a sample program!]]> Statistics: Posted by Suraj Joshi — Sun Oct 10, 2010 8:26 pm


]]>
2010-10-10T05:09:32-05:00 2010-10-10T05:09:32-05:00 http://petesqbsite.com/phpBB3/viewtopic.php?p=21111#p21111 <![CDATA[Can anyone post me a sample program!]]>

Code:

'Demo using a TYPE definition to create a file '*****************TYPE ClientType   CName AS STRING * 30     '30 bytes   Address AS STRING * 30   '30 bytes    City   AS STRING * 15    '15 bytes   State  AS STRING * 2     ' 2 bytes   Zip    AS STRING * 5     ' 5 bytesEND TYPE      ' total size = 82 bytesDIM Client AS ClientTypeRecordLEN = LEN(Client)       'find the size of each TYPE recordOPEN "ADDRESS.DAT" FOR RANDOM AS #1 LEN = RecordLENRESTORE ClientData         'restore to start of DATArecord = 0DO   READ CName$, Address$, City$, State$, Zip$       'read DATA   IF CName$ = "END" THEN EXIT DO   record = record + 1               'increment record number   Client.CName = CName$             Client.Address = Address$   Client.City = City$   Client.State = State$   Client.Zip = Zip$   PUT #1, record, Client     'PUT by record numberLOOPCLOSE #1ENDClientData:   DATA "Bob White","104 Birdland Rd.","Bellview","PA","15236"   DATA "Ward Cleaver","123 W. Beaver St.","Beaver","PA","15255"   DATA "Elmer Fudd","45 Wabbit St.","Bethel Park","PA","15022"   DATA "Wyley Coyote","33 Roadrunner Ave.","Clairton","PA","15122"   DATA "Jim Morrison","19 Doorway Dr.","Belleview","PA","15236"   DATA "END",0,0,0,0,0  

Code:

'Demo of the FIELD statement to read the file'*********************************************************************' Define field and record lengths with constants.CONST NM = 30, AD = 30, CT = 15, ST = 2, ZC = 5CONST RLEN = NM + AD + CY + ST + ZC'OPEN "ADDRESS.DAT" FOR RANDOM AS #1 LEN = RLENFIELD #1, NM AS CName$, AD AS Address$, CY AS City$, ST AS State$, ZC AS Zip$FIELD #1, RLEN AS Clist$         'define entire recordGET #1, 1                  'GET does not need a variable to read FIELD records!                                  'Read file for zip codes from 15230 to 15239 .DO WHILE NOT EOF(1)   ZipCheck$ = Zip$                            'read zip codes   IF (ZipCheck$ >= "15230" AND ZipCheck$ <= "15239") THEN      Info$ = Clist$      PRINT LEFT$(Info$, 30)     'read name string      PRINT MID$(Info$, 31, 30)  'read address string      PRINT RIGHT$(Info$, 17)    'read city, state and zip code      PRINT   END IF   GET #1                               'simply GET reads each FIELD record after firstLOOPCLOSE #1END

Statistics: Posted by burger2227 — Sun Oct 10, 2010 5:09 am


]]>
2010-10-10T01:11:43-05:00 2010-10-10T01:11:43-05:00 http://petesqbsite.com/phpBB3/viewtopic.php?p=21110#p21110 <![CDATA[:D]]> or other of the same kind so i needed some sample programs to get help.
Can u post it or any url . Any idea or suggestions what to make would be
appreciated. Thanks

Statistics: Posted by Suraj Joshi — Sun Oct 10, 2010 1:11 am


]]>
2010-10-07T00:22:19-05:00 2010-10-07T00:22:19-05:00 http://petesqbsite.com/phpBB3/viewtopic.php?p=21094#p21094 <![CDATA[Can anyone post me a sample program!]]>
Ya never know for sure though.

Haven't seen you around much Bongo, where ya been?

Statistics: Posted by burger2227 — Thu Oct 07, 2010 12:22 am


]]>
2010-10-06T23:21:27-05:00 2010-10-06T23:21:27-05:00 http://petesqbsite.com/phpBB3/viewtopic.php?p=21092#p21092 <![CDATA[Can anyone post me a sample program!]]> Statistics: Posted by bongomeno — Wed Oct 06, 2010 11:21 pm


]]>
2010-10-06T20:30:01-05:00 2010-10-06T20:30:01-05:00 http://petesqbsite.com/phpBB3/viewtopic.php?p=21091#p21091 <![CDATA[Can anyone post me a sample program!]]>
What kind of file? CSV or what?

Need more info. My demonstrator (Q-Basics) shows how to do many things in QB or QB64. QB64 is compatible with newer computers.

http://dl.dropbox.com/u/8440706/Q-Basics.zip

Ted

Statistics: Posted by burger2227 — Wed Oct 06, 2010 8:30 pm


]]>
2010-10-06T07:04:59-05:00 2010-10-06T07:04:59-05:00 http://petesqbsite.com/phpBB3/viewtopic.php?p=21085#p21085 <![CDATA[Can anyone post me a sample program!]]> which have following Features:-
1.Written in modular form.
2.Menu Based
3.Have capability to save data in files.
4.Kinda data managing program.
5.And lastly not very simple but complex.


Thanks :D

Statistics: Posted by Suraj Joshi — Wed Oct 06, 2010 7:04 am


]]>