Search found 1358 matches

by eddy
Mon Nov 08, 2021 9:10 am
Forum: Off Topic
Topic: Hi I'm Back ... and I lost my account
Replies: 5
Views: 3418

Re: Hi I'm Back ... and I lost my account

I used an old email account.
by eddy
Sun Nov 07, 2021 6:55 pm
Forum: Off Topic
Topic: Hi I'm Back ... and I lost my account
Replies: 5
Views: 3418

Hi I'm Back ... and I lost my account

Hi everyone,
I'm back.
But I lost my account so I'm stuck with pb 5.72 :mrgreen:
by eddy
Sun May 05, 2019 2:06 am
Forum: Announcement
Topic: PB language support for Visual Studio Code
Replies: 45
Views: 27711

Re: PB language support for Visual Studio Code

Hi,
I'm working on the following features:
  • code explorer (outline panel on the left)
  • code validation
Update v0.1.2
Image
by eddy
Wed Feb 13, 2019 10:44 am
Forum: Announcement
Topic: PB language support for Visual Studio Code
Replies: 45
Views: 27711

Re: PB language support for Visual Studio Code

Hi, Thanks GG and Programie, I'll use your code to add " Create PB project " command :D I've done no progress for my other tasks ... lack of time or motivation :oops: I'm searching an example coded in typescript : - to implement autocompletion - to retrieve PB keywords by using a compiler ...
by eddy
Sun Dec 09, 2018 4:37 pm
Forum: Announcement
Topic: PB language support for Visual Studio Code
Replies: 45
Views: 27711

Re: PB language support for Visual Studio Code

In this case, I wonder if it's a good idea to have PureBasic Tab Size setting ?
:?
by eddy
Sun Dec 09, 2018 4:18 pm
Forum: Announcement
Topic: PB language support for Visual Studio Code
Replies: 45
Views: 27711

Re: PB language support for Visual Studio Code

How to change Tab size Press F1 Enter "settings" Select Open Settings Enter "tab size" I know that. I've already changed tabs to spaces for vscode and it's working fine for other files. But once I open a file containing PB code, the tab size is set to 3 for that file. I have to ...
by eddy
Sun Dec 09, 2018 4:06 pm
Forum: Announcement
Topic: PB language support for Visual Studio Code
Replies: 45
Views: 27711

Re: PB language support for Visual Studio Code

How to change Tab size
  • Press F1
  • Enter "settings"
  • Select Open Settings
  • Enter "tab size"
This will change Tab Size global setting.

Image
by eddy
Sun Dec 09, 2018 12:46 pm
Forum: Announcement
Topic: PB language support for Visual Studio Code
Replies: 45
Views: 27711

Re: PB language support for Visual Studio Code

Hi,
I published the Purebasic extension for VS Code. :D

I splitted it into two plugins to make futur update easier.
Image
by eddy
Thu Dec 06, 2018 10:56 pm
Forum: Announcement
Topic: PB language support for Visual Studio Code
Replies: 45
Views: 27711

Re: PB language support for Visual Studio Code

Is it right that the language support can only be used in the vscode instance started using "Launch Client"? How to install and use it in the "normal" vscode instance? Yes, it is. But I plan to publish this first version to VS code MarketPlace. It will be easier to install and t...
by eddy
Thu Dec 06, 2018 8:39 am
Forum: Announcement
Topic: PB language support for Visual Studio Code
Replies: 45
Views: 27711

Re: PB language support for Visual Studio Code

- code auto indentation
- code beautfier
- code snippet support
- add dark theme
- add icon theme

Todo:
- code completion
- code outline (structure)

Image
by eddy
Sun Aug 05, 2018 3:22 pm
Forum: Announcement
Topic: PB language support for Visual Studio Code
Replies: 45
Views: 27711

PB language support for Visual Studio Code

Hi, I publish some plugins to support PB language on VS Code Marketplace: :arrow: VS Code extensions Features code auto indentation code beautfier code snippet support add purebasic dark/light color themes add purebasic icon theme How to install https://i.imgur.com/SMqN7Xe.gif How to choose color th...
by eddy
Wed May 31, 2017 7:16 am
Forum: Tricks 'n' Tips
Topic: SplitBarGadget - canvas-based splitter (win / linux)
Replies: 28
Views: 14465

Re: SplitBarGadget - canvas-based splitter (win / linux)

I needed a signed zero value for snapping border.

+0 right border
-0 left border
by eddy
Sun Mar 19, 2017 6:25 pm
Forum: Coding Questions
Topic: WebGadget - to old to display Google-Maps - Alternatives?
Replies: 5
Views: 2014

Re: WebGadget - to old to display Google-Maps - Alternatives

Hi, The Windows webgadget becomes pretty useless because of these limitations. You have to blame M$. :evil: I think it's possible to embed a chromium app like NW or Electron . But this solution will increase your package distribution size (75MB - 100MB) http://mynewstart.org/wp-content/uploads/2014/...
by eddy
Mon Mar 13, 2017 12:43 am
Forum: Applications - Feedback and Discussion
Topic: Löve Physic Editor
Replies: 0
Views: 2015

Löve Physic Editor

Hi,

Here is a little experimentation.
I'm trying to code a physic editor
  • canvas coded in Lua with Love2D engine
  • GUI coded in PB
:arrow: https://drive.google.com/open?id=0B0Db- ... jk0TWNURzg

Image
by eddy
Sat Mar 11, 2017 9:14 pm
Forum: Tricks 'n' Tips
Topic: LUA module coded in PB
Replies: 4
Views: 2602

Re: LUA module coded in PB

updated 2 - luaL_checkboolean : shorthand to get boolean argument - luaL_checkstring : shorthand to get string argument - luaL_checktype : API to check LUA supported types - LUA supported types enumeration updated 1 - pointer string arguments have been replaced by pseudo-type string arguments (p-ut...