Rudy Velthuis

Current status: "{actor} updated blog post community.embarcadero.com/write-blog-post" - 7 years ago
Member since: Friday, 21 March 2014
Last login: 4 years ago
Profile viewed: 2,070 views

Your Rank: 92
Points: 2

Rudy Velthuis replied to the topic 'Problem with ReadAllBytes' in the forum. 4 years ago

In Tokyo, you should include

<System.IOUtils.hpp>
, I guess.

Read More...

FWIW, that looks like a bug. They should have set the width style too.

This was answered in the public forums (forums.embarcadero.com, IDE group) a few days ago. Edit the documentation.htm file **for your language**, in my case in the "en" subdirectory (NOT the file in the welcompage directory, but the file in the subdi

I am still sad that the URL entry bar was removed from the welcome page. I used it to load pages from MSDN that I needed for my current project. Can't do that anymore. Could I do this with a modified welcome page, in JS?

The compilers and linker may have improved, but the runtime needs a big overhaul, IMO. I have had several C++ or C sources that did not readily compile, or did not work as expected. They did compile in GCC or Xcode.

Note that JonesForth is a terribly incomplete and non-standard implementation of Forth, even at a basic level. I also dabbled with writing a Forth in 386 asm, and started with JonesForth as an example, but soon found I had to rewrite most of it to ma

Rudy Velthuis replied to the topic 'Directives' in the forum. 6 years ago

>I have two classes with the same name, but one of them have datasnap configurations, and other have firedac local >connection. the two classes are implemented in differents units.>>When the user set the tipe of connection in the login form, the system changes the connection class for one of them.
Do something like:
if UserChoosesBla then
begin
MyQuery := UnitWithBla.TBlaQuery.Create(params);
// Set up bla query
end
else
begin
MyQuery := UnitWithFoo.TFooQuery.Create(params);
// set up Foo query
end;
// Use MyQuery. You can check for type with: if MyQuery.InheritsFrom(...) then

Read More...

Rudy Velthuis updated blog post It is working again in Blogs 7 years ago

It appears that I am able to write posts again. YAY! Expect to see more here. And it looks as if the comments were restored as well. Thank you, Embarcadero! ...

Rudy Velthuis updated blog post It is working again in Blogs 7 years ago

It appears that I am able to write posts again. YAY! Expect to see more here. And it looks as if the comments were restored as well. Thank you, Embarcadero! ...

Rudy Velthuis updated blog post It is working again in Programming 7 years ago

It appears that I am able to write posts again. YAY! Expect to see more here. And it looks as if the comments were restored as well. Thank you, Embarcadero! ...

Rudy Velthuis updated blog post It is working again in Programming 7 years ago

It appears that I am able to write posts again. YAY! Expect to see more here. And it looks as if the comments were restored as well. Thank you, Embarcadero! ...

Rudy Velthuis created new blog post It is working again in Blogs 7 years ago

It appears that I am able to write posts again. YAY! Expect to see more here. And it looks as if the comments were restored as well. Thank you, Embarcadero! ...

This blog doesn't seem to be functional. I can't write, edit or administer my posts. Please head to rvelthuis.blogspot.com, over which I have... Show more

I would like to have the ability to write and administer/edit my posts. That seems to be impossible, right now.

Rudy Velthuis updated blog post In Delphi, is addition commutative? in Blogs 7 years ago

Answer: no, not necessarily. Despite the existence of operator precedence, i.e. the fact that the following X := 3 + 4 * 5; results in 23 and not in 35, the order of operands can still have an effect. In my ...