Search found 55 matches

Go to advanced search

by rkmore
Thu Mar 08, 2018 4:12 am
Forum: Bug Reports
Topic: [SOLVED] double.TryParse bug in browser
Replies: 3
Views: 7211

Re: double.TryParse bug in browser

Good thought! Unfortunately the delimiter is '.' this is definitely a minor bug.
by rkmore
Sat Mar 03, 2018 5:21 am
Forum: Bug Reports
Topic: [SOLVED] double.TryParse bug in browser
Replies: 3
Views: 7211

[SOLVED] double.TryParse bug in browser

Found in RC1 In the browser (but not in the emulator) double.TryParse returns true (and the wrong result) for strings that should return false. Example: double dval; if (double.TryParse("123.45.67", out dval)) { TextBox1.Text = dval.ToString(); } results in "123.45" and returns t...
by rkmore
Mon Nov 13, 2017 11:39 am
Forum: Extensions and Plugins for CSHTML5
Topic: WebGL 3D renderer extension / Three.js
Replies: 2
Views: 13251

WebGL 3D renderer extension / Three.js

I have created a first cut at a 3D renderer extension that wraps Three.js and uses WebGL. Those familiar with WPF Viewport3D will see that the models and camera classes are designed using the same class structure and conventions as that library ( Model3DGroup, MeshGeometry3D, DiffuseMaterial, Geomet...
by rkmore
Fri Nov 10, 2017 7:19 am
Forum: Technical Support
Topic: [SOLVED] Code runs in simulator but not in browser
Replies: 5
Views: 9502

Re: Code runs in simulator but not in browser

Sigh Never mind. It was just me being stupid. I forgot the script had to be a compile time value. Surely the compiler process can give an error when you try to set the script using as variable! It is really confusing that a runtime generated script will work in the simulator but not in the browser. ...
by rkmore
Thu Nov 09, 2017 1:33 pm
Forum: Technical Support
Topic: [SOLVED] Code runs in simulator but not in browser
Replies: 5
Views: 9502

[SOLVED] Code runs in simulator but not in browser

Hello I am attempting to create an extension to wrap WebGL (Three.JS) and I am having a strange issue. I have gotten an early test to work in the simulator but in the browser I get an error I can't figure out. [img]Capture.JPG[/img] The error is Uncaught Error: The function 'System.Void ThreeJS.View...
by rkmore
Thu Nov 02, 2017 10:36 am
Forum: General Discussion and Other
Topic: Progressive Web Apps (PWA)
Replies: 1
Views: 8668

Progressive Web Apps (PWA)

Does the CSHTML5 team anticipate supporting manifest generation, service worker development, and access to the extended api set to allow development of PWA apps?
by rkmore
Wed Sep 13, 2017 10:49 am
Forum: Bug Reports
Topic: Runtime error for certain control names
Replies: 1
Views: 4373

Runtime error for certain control names

I found that when I create a control like this..... <Canvas> <TextBlock Text="Error Example" x:Name="Width" Canvas.Left="20" Canvas.Top="30"/> </Canvas> where "Width" is a property of the container as well as the name of the control then it works fin...
by rkmore
Wed May 31, 2017 4:03 am
Forum: General Discussion and Other
Topic: CSHTML5 Contractors marketplace?
Replies: 1
Views: 5734

CSHTML5 Contractors marketplace?

I would be very interested in some sort of dedicated forum category or marketplace that would allow me to find and hire talented CSHTML5 developers to assist in projects (something like upwork which I have used often). Having used CSHTML5 on several projects with great success I have some developmen...
by rkmore
Fri Jan 13, 2017 8:31 am
Forum: General Discussion and Other
Topic: Looking for a WebGL example
Replies: 6
Views: 10986

Re: Looking for a WebGL example

Yes, thank you. I look forward to the strongly typed demo and hope that it illustrates some more user interaction. Might I suggest that a 2D Mandelbrot set might not be the best demo. Something like a 3D cube that allows the user to rotate the object and also does hit testing would be very useful. T...
by rkmore
Wed Jan 04, 2017 5:47 am
Forum: General Discussion and Other
Topic: Looking for a WebGL example
Replies: 6
Views: 10986

Re: Looking for a WebGL example

Trying it now...

Thanks for the support

RKM
by rkmore
Thu Oct 20, 2016 9:35 am
Forum: Technical Support
Topic: TextBlock.Tapped does not fire under Safari
Replies: 1
Views: 4279

TextBlock.Tapped does not fire under Safari

The "Tapped" event of a "TextBlock" does not fire under Safari on an iPhone. Super simple example below. On any browser but Safari works as expected. On Safari only the PointerPressed event fires, not the Tapped event. <Page x:Class="AppleTest.MainPage" xmlns="http...
by rkmore
Thu Sep 29, 2016 10:55 am
Forum: Bug Reports
Topic: [SOLVED] DateTime bug: Error "cannot construct UInt64 from negative number" exception localized
Replies: 7
Views: 11530

Re: [SOLVED] DateTime bug: Error "cannot construct UInt64 from negative number" exception localized

Dear Sesztak You should have received an email with the 10.0 link (don't know why it is not in the message body like all the others). If not drop them a note. We found that it actually depended on the value of the date time and not even the zone. Two different values work differently. Very strange. ...
by rkmore
Mon Sep 12, 2016 10:13 am
Forum: Bug Reports
Topic: [SOLVED] Combobox badly broken in 9.2
Replies: 2
Views: 5470

[SOLVED] Combobox badly broken in 9.2

I just updated a project to 9.2 and all of the comboboxes are no longer able to be filled at runtime. I can't get any combobox to display anything in the dropdown. I have tried adding them as an ItemsSource, and adding them in code. The combobox appears to simply not work! Below is one attempt but I...
by rkmore
Fri Aug 05, 2016 1:24 pm
Forum: Technical Support
Topic: Mixed style TextBlock
Replies: 2
Views: 5610

Re: Mixed style TextBlock

You can display HTML and get the effect you are looking for. Have a look at this post

http://forums.cshtml5.com/viewtopic.php?f=4&t=1487&p=1941#p1941
by rkmore
Sun Jul 17, 2016 11:17 am
Forum: Bug Reports
Topic: ComboBox bug with TabControl
Replies: 3
Views: 6480

Re: ComboBox bug with TabControl

This happens with other controls on a tab too.

Try cycling the "Visibility" of the child controls on the tab when the tab becomes active. Worked for me.
by rkmore
Fri Jul 15, 2016 11:36 am
Forum: Technical Support
Topic: Db connection
Replies: 1
Views: 4042

Re: Db connection

Have a look at the WCF examples.
by rkmore
Fri Jun 24, 2016 9:51 am
Forum: Technical Support
Topic: any secure encryption algorithm implemented ?
Replies: 3
Views: 6207

Re: any secure encryption algorithm implemented ?

You can easily use javascript interop to call one of the many excellent javascript crypto libraries. I have been using Stanford Javascript Crypto Library (SJCL) but there are many good ones. http://bitwiseshiftleft.github.io/sjcl/ for a pretty good list of availabe crypto libraries see here https://...
by rkmore
Wed Jun 15, 2016 7:18 am
Forum: Bug Reports
Topic: [SOLVED] Restore links to previous versions
Replies: 2
Views: 5431

[SOLVED] Restore links to previous versions

Applications created with 8.2 (and 8.0) do not work on Chrome for Android (JSIL.Core.js unhandled exception)

When I went to roll back to version 7 or 7.2 the links are now gone!

Please restore these links. I am dead in the water until I can roll back or until this is fixed.
by rkmore
Fri Jun 03, 2016 3:14 am
Forum: Technical Support
Topic: [SOLVED] Possible to render HTML ?
Replies: 10
Views: 24505

HTML at runtime [SOLVED]

It turns out to be pretty easy once you figure it all out. In this example a have a StackPanel named stackPanel1 where I want to display the HTML dynamically at run time <StackPanel> <Button Content="Show HTML" Background="White" FontSize="22" Click="Button_Click&q...

Go to advanced search

 

 

cron