Quantcast
Channel: Oxygene - RemObjects Connect
Browsing latest articles
Browse All 182 View Live

Can't debug with Oxygene 6.0.51.1331

I upgraded today my Oxygene to 6.0.51.1331 and I can't debug my android app. When the application executes a breakpoint the activity is closed and VS2012 lost connection to the device.I downgrade to...

View Article



Why cant i use Devexpress xtra Reports

Dear All, is there any reason why i cant use the devexpress xtra reports, theres some great features we use in c#, i really need to use them in oxygene but i cant see the xtra reports when adding a new...

View Article

Publish asp.net web service

I'm trying to publish a web service, but I get an error saying "The Web Publishing extension is not installed which is required to publish. you can install it from...

View Article

How to send messages back from a class to a form

Hi, i have a class that runs various processes, during the process i want to send updates back to the Parent Form to show progress, whats the best way to do this ?

View Article

MSBuild and Compilerhints (PrismXE3 5.2.41.1191)

We are using msbuild to compile all of our assemblies. From the msbuild log we can get all errors and warning. We also want to get the hint which the compiler emits. The only way which seems to work is...

View Article


Hydra support for C++ Builder Xe3

Your Ge/Hydra case study seems to imply that they were able to create C++ Builder plugins. Is this the case? If so, could you point me to some documentation.

View Article

Newbie: question about RSS

Hi, I'm a hobbyist and a relative novice, so I apologise if this is a slightly trivial question. :-)In order to learn Oxygene I need a project, so I've decided to make my own RSS reader. Yes, I know I...

View Article

Oxygene 6 .NET and Monotouch

Are there known issues / quirks when compiling with Oxygene 6 .NET compiler and targeting Xamarin.iOS (MonoTouch)? I.e. we get an assembly as output after compilation - will this assembly work fine or...

View Article


Optimization for records in Java

I've been testing some projects ported from Delphi and found some issues causing performance problems. I know that for Java some things like records or var parameters don't exist and thanks to Oxygene...

View Article


Getting a PDF from my RO Server on an android client and open it.

I need to make some reports on my android application, and I am thinking of generate them as PDF on the server side and getting them on the android client.I think it is easy to create a new service...

View Article

Integer and NSInteger problem

I have a method that returns radio group's row count:method GetRowCount(aRadioGroup : NSMatrix) : Integer;var ColCount, RowCount : Integer;begin aRadioGroup.getNumberOfRows(var RowCount) columns(var...

View Article

Real time data logging and garbage collection

Colleagues,I'm new to programming in .Net (and with Oxygene) and have a question. I'm writing an application that receives audio data from the microphone port of a Windows PC and processes it in real...

View Article

"unit" Visibility Level

Hello.I am going to use added "unit" Visibility Level from Oxygene6.However, it becomes the compile error.What is a problem? TestClass = public class private var i: LongInt; unit property TestProp:...

View Article


Feature Request: Nougat - Project Options and Project Templates

Some wishes for the next major release :o)1. "New Project"- add the "Xcode like" Options - Use Storyboards, Use Core Data - if "Use Storyboards" is checked use project templates with storyboards else...

View Article

Oxygene strings in code editor with spec chars

I would like to know how to declare string in oxygene with specific characters as analog in C# with @.Example:var pattern : String :=...

View Article


having problems with .NET StackPanel

I'm having problems with a StackPanel. I thought if I had a .NET project I'd be using the StackPanel...

View Article

What to do about Type "Guardian.[..].Settings" used is defined in multiple...

I have a main solution with 33 projects for a Silverlight Web Site application. The web site hosts two services one of which is SetttingsService. The service uses a separate DatabaseHelper assembly...

View Article


.NET and Code completion

I'm having difficulty getting code completion to work in my .NET WPF project. It works fine for classes and types defined in my Window1.xaml.pas file. But if I try to reference a GUI object that's...

View Article

Assembly "LocalizedStrings" not found error.

I have two solutions. In one, I have a LocalizedStrings assembly that I am trying to use with "internationalizing" our apps. So it works fine in all apps in that solution. Now I want to add the same...

View Article

SQL CLR

Can Oxygene be used to produce SQL CLR projects e.g. user defined functions, stored procedures etc... I think the answer is no, but can you confirm this. Assuming the answer is no, are there any plans...

View Article

real world apps in oxygene?

In my company's "future of our development team" meeting, the topic came up about real world applications written in oxygene. Beyond those coded by RemObjects and done in Marc's spare time, are there...

View Article


bound array is not initialized when part of a record

using Oxygene, current Trial Version; on VS 2010 professional, building for .NET, in a type library called TARIFLIB.PASinterfacetype myrec = record chars: inline array[0..255] of char; ints: inline...

View Article


Unable to build or run after editing a xib with Xcode

- iPad 1st gen running iOS 5.1.1 - Xcode 4.5.2 with 5.1 SDK installed. - A new Simple App for iOS project. - Target SDK and Deployment target both set to iOS 5.1I also have Xcode 4.4 and 4.6...

View Article

will "notify" ever come to Java/Cocoa in Oxygene?

It took me a bit of digging, but I think I figured out that "notify" only works in .NET because it's using an underlying feature of .NET. As such, no notify in Java or Cocoa because there is no support...

View Article

examples of virtual/override on properties (class and instance), especially...

According to the the wiki, virtual/override can be used on properties. I think I've figured it out for simple types like Integer but not so much for something more complicated like arrays of values....

View Article


comparison matrix showing which keywords/features are available on each platform

I'd really like a comparison matrix showing which keywords/features are available on each platform. I'm trying to write a cross-platform app as part of getting my feet wet with Oxygene. Ideally, it'll...

View Article

Operator overloading for oxygene (java version)

Operator overloading don't working for oxygene (java version). Is this the one percent of incompatibility? ;) (quotation "Oxygene provides one single language with a high (99%+) degree of compatibility...

View Article

Manage NuGet Packages gone after installing release build 1351

Hi SupportSeems that the "Manage NuGet Packages.." menu option is no longer available, to be honest there was also an update to NuGet (2.7.40808.167) that I applied before upgrading Oxygene and don't...

View Article

suggestion: omit getter and just use "read" so you can write a setter

I love how Oxygene handles properties, eliminating a lot of extra gunk that you don't need like fields and getters/setters. The one place I feel like this falls down is when you need to write a setter...

View Article



tuple oddity or bug?

I've ran into something really kind of odd with tuples. I'm using the .NET version of 6.0.5 trial in a WPF project (though that shouldn't matter). type Value = tuple of (Integer, Integer); Class1 =...

View Article

why does class property work and not class const/var when using Class...

I don't really understand the results from this code: type Class1 = public class public class const ValConst: Integer = 1; class property ValProperty: Integer := 1; class ValVar: Integer := 1; end;...

View Article

Problem with a record constructor in .NET

Using the latest release I found a regression bug when declaring a record constructor. I get :(E0) Internal error: Index was out of range. Must be non-negative and less than the size of the...

View Article

index operator [] doesn't work on tuples when assigned to a class

type Tuple1 = tuple of (String, Boolean); Class1 = public class public method DoSomething(c: Tuple1); end;implementationmethod Class1.DoSomething(c: Tuple1);begin var s: String := c[0]; //doesn't...

View Article


shouldn't setting a non-nullable method parameter to nil result in a compile...

It seems to me that the lack of nullable on a method parameter is treated differently (and incorrectly) compared to a lack of a nullable property value. type Class1 = class public property Val: Integer...

View Article

ASP.NET MVC templates

I just installed Oxygene for .NET version 6.1.53.1351 in Visual Studio 2012 Shell (Integrated) to check out the Web Api. I don't see any ASP.NET MVC templates. Am I missing something ?

View Article

make Oxygene compiiler test cases public

I don't know how feasible this is, but I think RemObjects could do itself a favor by posting their Oxygene test cases somewhere we could see them. I've already found four compiler bugs and I've read...

View Article


how does one use events in a cross platform way?

I really don't understand events at all. I'm trying to figure out how to do them in a non-platform-specific kind of way but the wiki is a bit jumbly and confusing. Especially as pertains to switching...

View Article


Android: open XML file

I have UI translations stored in XML files, shared by different projects in one solution (versions of my app for different platforms). The XML files are located on a shared folder on my Mac and than...

View Article

update to 6.1.53.1351 then rebuild RO/JAVA & DA/JAVA jar failure

When I try to compile jar, 200 errors.Several of error are as follows:191 (E407) No overloaded constructor with these parameters for type "ByteArraySeekableInputStream", best matching overload is...

View Article

Cocoa and SQLite

Can anyone point me to a SQLite CRUD example using Oxygene & Cocoa? Simple or complex, either is okay.

View Article

No Android devices listed and VisualStudio crashes when opening Nougat...

Oxygene 6.1.53.1351VS Shell 11.0.60610.1 Q11RELIf I open an Oxygene for Cocoa project it crashes Visual Studio. It appears to be an issue when communicating with CrossBox on the Mac host since if I...

View Article


frameworkfolder parameter has no effect?

We've noticed that for some targets the following command-line invocation doesn't work as needed: compile.cmd:set FRAMEWORKFOLDER=%X_I_DIR% oxygene.exe "%PACKAGEDIR%\SecureBlackBox.%%v.oxygene"...

View Article

.NET and Code completion (build .1351)

Hi SupportUsing build .1351, code completion stops after introducing and inline "var" within a "using" statement. egusing x := new TestClass() do begin // CC works var y := 1234; // CC stops...

View Article


Linker Timeout Error

How can I solve this? I get an error on the linking so I cannot run/create any programs. I'm not sure what causes it but I've rebooted my Mac and restarted visual studio. I closed my project and...

View Article

WinRT Designer fails to load

Using the latest Oxygene (6.1.53.1351) in Visual Studio Shell (11.0.60610.1), on Windows 8 Pro 64-bit.Do this: File | New | Project....... WinRT | WinRT ApplicationScreen displays 'Loading Designer'...

View Article


How do I make something like IDictionary use a function to get the value?

I have something like foo that is an IDictionary. And I can do foo[ 'key' ] and get back the value for that key. But I want it to have to go through a method to get the value for that key. How do I do...

View Article

//TODO

Would something like this be possible in Oxygene:http://blogs.msdn.com/b/zainnab/archive/2010/06/07/todo-comments-in-the-task-list-vstiptool0029.aspxBest Regards,Jeroen

View Article

How to crash the IDE, or hang it.

Oxygene has had C# and Java code importers for a while now. It looks like it recently added a Delphi importer.Just for fun (I knew it would never really work) I told it to import dwsCompiler.pas from...

View Article

How do I do this?

In Delphi, I'd occasionally do something like:const ft: array[boolean] of string = ('it is not set', 'looks like it is set');... someControl.text := ft[somethingReturningABoolean()];so I could do...

View Article


trial version - sample download

By downloading a silverlight sample in trial verision i become the message "This extension in not supported on the current product". Where can i download some simple samples for silverlight programming...

View Article

Browsing latest articles
Browse All 182 View Live




Latest Images