Search found 5 matches

by cl4551f13d
Jun 08, 2020 5:27
Forum: Windows
Topic: Simple tutorial to create first Windows applications
Replies: 37
Views: 7102

Simple tutorial to create first Windows applications

Hi.

I have looked at some examples of simple applications for windows, I have compiled them, but although I come from VisualBasic 6, I have not been able to make my first program for Windows.

Can someone give me a link to a step-by-step tutorial?
by cl4551f13d
Jun 07, 2020 1:48
Forum: Projects
Topic: FreeBasic IDE-poseidonFB(Update 2024.03.03)
Replies: 1283
Views: 359706

Re: FreeBasic IDE-poseidonFB(Update 2020.06.05)

Hi

try downloading this ide, and Microsoft Edge says it contains a virus.

Image

Does the same happen to another?
by cl4551f13d
Jun 04, 2020 6:40
Forum: Beginners
Topic: Read all the contents of a file in a single instruction
Replies: 1
Views: 710

Read all the contents of a file in a single instruction

Hello

I already know how to write, for example a very long string, for example, 1 Mb in a single Put.

Is there a way to get the same string in a single instruction, knowing the size to read?
by cl4551f13d
Jun 04, 2020 4:26
Forum: General
Topic: File generation and writing, very slow
Replies: 5
Views: 1082

Re: File generation and writing, very slow

Do it in one. #include "file.bi" Sub savefile(filename As String,p As String) Dim As Integer n n=Freefile If Open (filename For Binary Access Write As #n)=0 Then Put #n,,p Close Else Print "Unable to save " + filename End If End Sub dim as string s dim as double t t=timer s=stri...
by cl4551f13d
Jun 03, 2020 6:37
Forum: General
Topic: File generation and writing, very slow
Replies: 5
Views: 1082

File generation and writing, very slow

Hello everyone. I want to make an application that shows me the speed of writing and reading from a pendrive. I have written in following program, but I notice that it is very slow. Writing 10MB to drive c: takes 77 seconds. DIM AS INTEGER FileHandler, ByteCounter DIM AS Double dt DIM AS integer ms ...