Quantcast
Channel: Embarcadero Community - Embarcadero Community
Viewing all 1888 articles
Browse latest View live

SubVersion client from the IDE

$
0
0

Hi there,

Trying to get the Subversion client to Work from inside the IDE (following the guidelines from the README file (c:\Program Files (x86)\Embarcadero\Studio\19.0\bin\subversion\) and the online guidelines from embarcadero .

I am using:

TortoiseSVN 1.9.5, Build 27581 - 64 Bit , 2016/11/26 09:18:58
Subversion 1.9.5, -release

as client and have updated the above "subversion" folder content  according to the guidelines from embarcadero told to do.

Still SubVersion is very unstable - it throws exceptions or just crashes all the time.

There is nothing wrong with the Subversion installation - it works fine outside the IDE (in the explorer, total commander,...etc )

Pls is there any workaround, hints to follow ??

 

 

 

 

 


démarrage de delphi starter tokyo

$
0
0

impossible de démarrer delphi tokyo starter : une erreur dans repository.xml le document xml doit contenir un élément de niveau supérieur ligne 0. que faire pour régler ce problème ?

XCode 8.3?

$
0
0

Hi,

As always, starts aligned like each previous releases... RAD Studio is out, and a few days later, the new XCode is there too.
Did anybody try XCode 8.3 with RadStudio 10.2?
Is anything broken?
Thanks for any clue.

Inspecting variable values in Delphi Tokyo 10.2 Starter

$
0
0

My question is concerned with debugging. I used to use Delphi 7, I'm quite a beginner, learning on my own and from tutorials. Now I'm using Tokyo 10.2. Starter. In Delphi 7, if I set a breakpoint somewhere in the code, and the program stops at that line, the values of the variables are displayed as hints if I move the mouse on them in the code.In Delphi 10, this does not seem to work. It seems that I can inspect the variable values only by addig them to the Watch List one by one. My question is whether I can configure Delphi 10 so that it displays the values as hints, just like Delphi 7 did, when moving the mouse on the variable name?  

Tooltip Help Insight is checked under Tools / Options / Editor Options / Code Insights, and it still does not work.

I have no local and global variables of the same name.

 

Thanks

Legal using two Delphi Starter instances

$
0
0

Hello to all!

I am trying to learn to programming and since this I am there with one question.

Recently I have downloaded a new Delphi Tokyo 10.2 Starter edition (which is free). This is a cool IDE (early I have been using Lazarus a little a bit). I have install Delphi Starter on my main home machine, but sometimes I do a lot of stuff outside my home (not related with programming), so my home computer is not available for me. But when I am outside of home, all free time which I have could be spent to improve my programming skills. Having my personal laptop I am wondering, if I can legally install Delphi Starter Tokyo 10.2 on my laptop and work with it when I am not at home. But in the same time I want to be able also to have Delphi Starter Tokyo 10.2 to be installed on my home machine, so when I get at home I could use my home machine to programming.

Programming is just my hobby and I don't want to break the law with illegal installing Delphi on my personal laptop.

The clear question is: can I legally install Delphi Starter Tokyo 10.2 on two my personal machines?

FAQ for Delphi Starte Tokyo 10.2 says next:

"If a single user starts two instances of a Starter edition product, does that count as two toward the maximum of five?

Yes, if they are on separate machines or separate virtual machines."

(https://www.embarcadero.com/products/delphi/starter-faq)

But I would like to have more info about this question.

 

Thanks in advance for your help!

P.S.

Sorry for my poor English(

E2035 Not enough actual parameters

$
0
0

I have an issue with the following code :

Type

TTagNotificationList = array of TNotifyEvent;

 

protected

function IndexOf(List:TTagNotificationList; aHandler:TNotifyEvent):Integer;

 

Implementation

 

function TTag.IndexOf(List: TTagNotificationList; aHandler: TNotifyEvent): Integer;

var

  c: Integer;

begin

  if (aHandler <> nil) then  // Here's the error : [dcc32 Error] tag.pas(261): E2035 Not enough actual parameters

    for c:=0 to High(List) do begin

      if (TMethod(List[c]).Code = TMethod(aHandler).Code) and (TMethod(List[c]).Data=TMethod(aHandler).Data) then begin

        Result := c;

        exit;

      end;

    end;

  Result := -1;

end;

Any suggestions ?

Geir

play sound in android

$
0
0

hello .... why this code is not working in Tokyo 10.2 .... but working in seattle 10.0

procedure TForm1.Sound;

{$ifdef android}

var

AudioObj: JObject;

Audio: JAudioManager;

{$endif}

begin

{$ifdef android}

  AudioObj:= TAndroidHelper.Activity.getSystemService(

      TJActivity.JavaClass.AUDIO_SERVICE);

  Audio := TJAudioManager.Wrap((AudioObj as ILocalObject).GetObjectID);

  Audio.loadSoundEffects;

  Audio.playSoundEffect(0);

  //0 - http://developer.android.com/intl/ru/reference/android/view/SoundEffectConstants.html

  {$endif}

end;

 

Inconsistent behavior of ->setFocus with TEdit

$
0
0

Does anyone have any experience or helpful advice about using ->setFocus with TEdit controls? When I write simple code and use ->setFocus, the cursor appears, flashing in the desired TEdit, when I run the program. But when I try to do the same thing in my "real" work, ->setFocus doesn't have the desired effect, i.e., the TEdit box appears, but the cursor is not flashing in it. (And if I start typing, what I type does not appear in the TEdit box.) I would love to attach an example, but the project where I'm having the problem is 5,000+ lines at this point.

Are there any known "bugs" or tricks or idiosyncracies of ->setFocus that I need to know about?

River_Forest


Support for ARM64 (Samsung Galaxy S8)

$
0
0

Delphi 10.2 Tokyo (and possibly Delphi 10.1 Berlin, after update 1) support Android Nougat, however I still cannot run (or even target) Delphi applications to a Samsung Galaxy S8.

I am fairly sure that the Samsung mobile USB drivers I installed include the S8, however the phone does not appear in the list under Target Platforms | Android | target.

I am guessing it is due to the S8's ARM64 processor.  I'm not certain that this is the case, so my question is in two parts:

1. Can we target Android ARM64 systems with Delphi?

2. If not, when will we be able to target that platform?  If we can, then what is blocking the targeting of the S8?

 

 

firemonkey stylelookup Icon color

$
0
0

10.1.2 can use IconTintColor properties to set the styleLookup icon color. How about 10.2?

thank you

Calling TStyledPresentationProxy from C++

$
0
0

I am trying to register a new presentation for a custom control in C++.  Is it possible to convert the following Pascal to C++ code?  I am having trouble with the last parameter, the TStyledPresentationProxy template.

Working in Firemonkey, RS 10.2.

TPresentationProxyFactory.Current.Register(TMemo, TControlType.Styled, TStyledPresentationProxy);

git integration - ssh protocol

$
0
0

Hi

does anybody know if I can work with rad studio and git repositories using ssh protocol ?

 

Problem with form height in IDE

$
0
0

Form 800x600 being resized to 800x580 when the form is opened in the IDE. What to do?

Winsock

$
0
0

We are getting Winsock errors on database connections in our existing application written in Delphi 2007. This is not using FireDac. Do the FireDac connections in 10.2 use Winsock, or have they moved on?

AV installing packages into IDE

$
0
0

We've got a no. of old 3rd party components that when our main project was migrated from Delphi 2009 to Delphi 10 Seattle were not repurchased, but upgraded in house.

We've not had any issues with Seattle.  However when attempting to install the same packages into Berlin/Tokyo, they AV with "Can't load package ..... Access violation at address 1D068791 in module 'bds.exe'. Read of address 00000010".

We have rebuilt the packages :)  It seems what builds and installs OK in Seattle, build OK in Berlin/Tokyo, but won't install.

The main culprit is FastReports v4, however it's not just FastReports it's others as well.

If this was a standard runtime error, we'd be able to trace it through in our application etc.  But as it AVs on installation of the design-time packages into the IDE we're unable to do anything.

Does anybody have any ideas?


Linux support

$
0
0

I have several projects using c++ builder 6.  Is there any version of the Embarcadero product that will support compiling this into an exe that can be deployed under debian linux? And if so where can it be purchased? Thanks

PS - Still want to work under windows 7 too if possible.

 

TO GET HELP

$
0
0

HOW CAN I DOWNLOAD DELPHI 10.2 FREE

Structure pane popup wrong

$
0
0

Structure pane popup menu gives a popup item "Tool Windows". After clicking this it gives the correct normal popup menu.

I have no glue why this started to happen this morning. Searched Options, Restarted, searched google and help.

How do I restore the popup menu in the structure pane?

How to connect bluetooth printer from IOS device ?

$
0
0

Hello,

     i have code for connecting bluetooth printer from Windows & Android devices but i couldn't able to find any sample program for IOS.

Please help me on this.

winapi problems with 10.2

$
0
0

I have an issue with the 10.2 Trial edition.  I am able to compile a C++ Release Build but cannot compile a Debug Build.  I am getting numerous E2257 errors in Winapi.Windows.hpp and Winapi.ShellScaling.hpp, and E2238 and E2344 errors in SystemRtti.h.  I reviewed https://community.embarcadero.com/article/articles-support/171-rad-studio/16436-issues-with-winapifamily-h-and-other-header-files-after-installing-c-builder-10 for a previous similar problem with 10.1, but verified all of the eight header files are present and updated after the 10.1 hotfix.  I had a similar problem when I updated to the 10.2 Starter but resolved that when I reloaded my previous project file.  That is not working for me now.  So, if anyone can help me resolve the winapi problems I'd also appreciate it.  FYI, I did a complete manual uninstall of the previous Starter editions before installing the Trial edition, so hope that helps.  Perhaps there are still some old files or registry keys that are affecting the clean execution of 10.2 Trial for me.

 

Viewing all 1888 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>