Search found 7 matches

by pfoo
Sun Aug 13, 2006 11:47 pm
Forum: Tricks 'n' Tips
Topic: Images in Editor gadgets!
Replies: 85
Views: 42338

What i mean is putting text and image on the same line.
For example :
Blah blah blah (image) blah blah blah
by pfoo
Sun Aug 13, 2006 7:52 pm
Forum: Tricks 'n' Tips
Topic: Images in Editor gadgets!
Replies: 85
Views: 42338

Hey, very good job :D
Is it possible to add text on the left or on the righ of the image ?

Apparently,

Code: Select all

SetGadgetText(0,a$+"test")
SetGadgetText(1,a$+"test")
don't work, but it's possible to write manualy beside images ...
by pfoo
Sat Aug 12, 2006 12:23 pm
Forum: Coding Questions
Topic: Network problem, help!
Replies: 4
Views: 1425

I've got the same problem (see http://www.purebasic.fr/english/viewtop ... t=clientid)

It seems that everything work correctly with PB4 :)

But thx Tranquil, i'd to take care of this !
I don't want to see the same problem than MSN got, "the message cannot be send"
by pfoo
Sun Jul 23, 2006 12:15 pm
Forum: Coding Questions
Topic: Problem with CloseNetworkConnection
Replies: 3
Views: 1615

Note : I'm still using v3.94 windows (waiting for PB 4.0 linux before downloading v4)
by pfoo
Sat Jul 22, 2006 9:34 pm
Forum: Coding Questions
Topic: Problem with CloseNetworkConnection
Replies: 3
Views: 1615

I tried to manually set ClientID to 0, but it don't change anything ...

Simplified code :


If InitNetwork() = 0
MessageRequester("Error", "Can't initialize the network !", 0)
End
EndIf


Port = 7000
Buffer = AllocateMemory(1000 ...
by pfoo
Sat Jul 22, 2006 8:56 pm
Forum: Coding Questions
Topic: Problem with CloseNetworkConnection
Replies: 3
Views: 1615

Problem with CloseNetworkConnection

Hello !

I'm working on a chat server/client application and I've got some problem with the CloseNetworkConnection function.
When a client send "QUIT" to my server, I use CloseNetworkConnection(ClientID) (for example, clientid = 1904 ). No problem here. But if the same client reconnect (same ip ? No ...
by pfoo
Thu May 25, 2006 5:00 pm
Forum: Coding Questions
Topic: Help ! (table)
Replies: 1
Views: 795

Help ! (table)

Hello !

I'm starting writing a little chat server, but i've got some problem..


Structure base
Login.s
Pass.s
EndStructure
Dim Database.base(1000)

Database(pfoo)\login = "pfoo"
Database(ukw)\login = "ukw"


My first problem was here:
database(pfoo)\login = "pfoo"
database(ukw)\login = "pfoo ...