Search found 14 matches

by RomanR
Fri Jan 27, 2017 5:48 pm
Forum: Announcement
Topic: PureBasic 5.60 final is available !
Replies: 145
Views: 84742

Re: PureBasic 5.60 beta 1 is available

Great Work :D ! Cool new features 8) !

Since you added SSL support to email, I'm waiting for SSL support for FTP (FTPS/SFTP). I wrote a liitle applikation to transfer certain files to a server. I can't use it anymore for security reasons (we stopped using FTP and sitched to SSH/SFTP)!

Would be ...
by RomanR
Wed Sep 03, 2014 8:05 am
Forum: Applications - Feedback and Discussion
Topic: PB IDE Plugin : Print colored sources from IDE
Replies: 20
Views: 24981

Re: PB IDE Plugin : Print colored sources from IDE

@camomille

Hello,

I have still have the "August Release with Source code" from Flype. I also have corrected two little bugs:

; [x] Known Bug : [FIXED] If Not is not allowed for strings (PB 5.00b7 +)
; (was tolerated in earlier versions). RR
; [x] Known Bug : [FIXED] Line Wrapping do not works ...
by RomanR
Thu Aug 14, 2014 2:40 pm
Forum: Feature Requests and Wishlists
Topic: 5.30 advanced usage UTF-8(UNICODE)
Replies: 25
Views: 9679

Re: 5.30 advanced usage UTF-8(UNICODE)

- PB auf Deutsch ;)

:lol: impressive... :lol: :mrgreen: 8)

To demonstrate "natural" programming interesting. But for real programs not practical. I understand, that someone who is not so firm in english would prefer a programming language in her/his mother tongue. As long as you are only ...
by RomanR
Wed Aug 13, 2014 8:16 am
Forum: Feature Requests and Wishlists
Topic: 5.30 advanced usage UTF-8(UNICODE)
Replies: 25
Views: 9679

Re: 5.30 advanced usage UTF-8(UNICODE)

I have to totally agree with Little John.

A general purpose programming language such as PB is not only for communication between a programmer and a compiler, but also for communication between programmers.

Although english is not my mothertoung, the primary language in my programs of all ...
by RomanR
Mon Sep 02, 2013 4:23 pm
Forum: Tricks 'n' Tips
Topic: Registry Module (windows only)
Replies: 97
Views: 67373

Re: Registry Module (windows only)

Hi ts-soft,

to get an error while reading recursively is not a problem (therfore the "If Not RegReturn\ERROR" part). It's ok if I am not allowed to read some subkeys (the ways of mircosoft :wink: are mysterious).
The only problem is, if I am not allowed to read a particular subkey (and it's not the ...
by RomanR
Sun Sep 01, 2013 5:14 pm
Forum: Tricks 'n' Tips
Topic: Registry Module (windows only)
Replies: 97
Views: 67373

Re: Registry Module (windows only)

Hello ts-soft,

I think there is still a tiny bug:

i'm reading rekursively through the registry. But if one error occurs, it won't be cleared on the next call.


EnableExplicit

XIncludeFile "Registry.pbi"

UseModule Registry

Define RegReturn.RegValue
Define ccsctrl.s = "SYSTEM\CurrentControlSet ...
by RomanR
Sun Sep 01, 2013 9:10 am
Forum: Tricks 'n' Tips
Topic: Registry Module (windows only)
Replies: 97
Views: 67373

Re: Registry Module (windows only)

Hi ts-soft,

this is nearly perfect :D

I have just one question:

do I have to initialise the structure (RegValue) each time I get an error?

e.g.:


UseModule Registry
Define RegReturn.RegValue

svc1 = CountSubValues(#HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Control\Class\{4D36E97D-E325 ...
by RomanR
Wed Aug 28, 2013 9:27 pm
Forum: Tricks 'n' Tips
Topic: Registry Module (windows only)
Replies: 97
Views: 67373

Re: Registry Module (windows only)

Thank you very much!

This is exactly what I was looking for! :D
I'm using this module to get the "FriendlyNames" of all available comm-ports - if interested, just tell me :wink:

I made 2 small changes though:

:arrow: I added 2 small Procedures:

(Declaration in DeclareModule)

Declare.i ...
by RomanR
Wed Jan 23, 2013 10:21 am
Forum: Coding Questions
Topic: [Done] [PB 5.10 b5] Formdesigner - Menues
Replies: 4
Views: 1220

[Done] [PB 5.10 b5] Formdesigner - Menues

With the new Version it is now not possible to create Menues, ToolBars or StatusBars!!

Also there is a bug with Menue-Shortcuts. The definitions are outside the InitWindow procedure -> Compiler Error: "[ERROR] ... #Windows is not initialized.".

As a minor issue for german users: the Control-Key ...
by RomanR
Tue Jan 15, 2013 12:51 pm
Forum: The PureBasic Form Designer
Topic: Form Designer 5.10
Replies: 665
Views: 228252

Re: Form Designer 5.10

Hi Polo,

here I am again :wink:

I have just installed PB 5.10 Beta 3. Great work with the integration into the IDE.

But - there is a little Bug with Menu-Shortcuts: if you use them, they are placed outside the InitWindow_x() Procedure ! Therefore you get an error message, if you try and run the ...
by RomanR
Wed Sep 26, 2012 9:07 pm
Forum: The PureBasic Form Designer
Topic: Form Designer 5.10
Replies: 665
Views: 228252

Re: Form Designer 5.00 beta 3

@ Polo

Found another one :wink:

For Text-Gadgets there are missing quotation marks, if you place them. But if you copy the Text-Gadget, everything is ok:


Procedure InitWindow_2()
Window_2 = OpenWindow(#PB_Any, 0, 0, 600, 400, "", #PB_Window_SystemMenu)
Text_0 = TextGadget(#PB_Any, 20, 20 ...
by RomanR
Wed Sep 26, 2012 8:27 pm
Forum: The PureBasic Form Designer
Topic: Form Designer 5.10
Replies: 665
Views: 228252

Re: Form Designer 5.00 beta 3

@ Polo

this is a screenshot (Panel / Frame3D / CheckBox) (Version from your Homepage ...)

http://s14.postimage.org/sbp1sc20x/Screenshot.png

If you place the CheckBox-Gadget directly on the Panel-Gadget, it works. But if you place a Frame3D-Gadget (not a Container-Gadget) on the Panel-Gadget and ...
by RomanR
Mon Sep 24, 2012 3:58 pm
Forum: The PureBasic Form Designer
Topic: Form Designer 5.10
Replies: 665
Views: 228252

Re: Form Designer 5.00 beta 3

Hi Polo,

great work so far :D !!!

But I've found some Bugs (Version 5.00 beta 3 - Windows):

1. It is not possible to place a Checkbox-Gadget on a Panel-Gadget when there is a Frame3D Container there! I usually group multiple Checkbox-Gadgets with a Frame/Container ...

2. The Caption of a Frame3D ...
by RomanR
Wed Jul 11, 2012 4:03 pm
Forum: Feature Requests and Wishlists
Topic: UseOracleDatabase()
Replies: 18
Views: 11556

Re: UseOracleDatabase()

+ 10 I need this feature very much 8) (ODBC is not convenient, TNSNAMES.ORA on Client-PCs available ...)