Questions tagged [ctp]

releases of software in a pre-beta form for developers, IT professionals and journalists to have prior to official releases.

Microsoft uses the acronym CTP for their Community Technology Previews. These are releases of software in a pre-beta form for developers, IT professionals and journalists to have prior to official releases.

Source : http://www.ehow.com/facts_7335880_microsoft_s-ctp-program_.html

40 questions
2
votes
1 answer

Asynchronous recursion in .NET

I have a bit of dumbed down code here Async Function GetCoolNumber() As Task(Of Double) Dim n = Await GetNumberFromSomeAsyncSource() If IsCool(n) Then Return n End If Return Await GetCoolNumber() End Function Private…
bradgonesurfing
  • 30,949
  • 17
  • 114
  • 217
1
vote
3 answers

How to access a controller action , from ctp file in CakePHP 3

I want to access a controller action from ctp file. Here my action name and ctp file name is different. For example I created an action in the name of tickets ,and my view ctp file name is ticket_title. How to do this ? This is my action :…
1
vote
2 answers

Splash background color Windows 8 Cordova Tools

I am using Visual Studio and the Cordova tools plugin. How can I change the background of the splash screen. The image provided does not cover the entire screen.
d0001
  • 2,162
  • 3
  • 20
  • 46
1
vote
1 answer

Crash in the CTP when opening "Blank App (Apache Cordova)" with Web Essentials for Update 2

I have the problem with the CTP of Multi-Device Hybrid Apps for Visual Studio (V 0.1.52514.1) The solutions generated by both the Typescript and the Javascript template will crash Visual Studio if I have the Web Essentials for Update 2 (version 2.2)…
1
vote
1 answer

Cakephp mail is not sending to mail id

In my code mail is not sending to mail id but the data is inserting into table here am attaching my controller code function supportrequest() { $heading = 'DATA CENTER SUPPORT'; $this->set('heading', $heading); …
1
vote
1 answer

How to use QTcreator with the Visual Studios november CTP compiler?

I've been struggling with this for a few days now. I can't figure out how to set up QT to use the cpt compiler. I've used a program called BlueGo (https://bitbucket.org/Vertexwahn/bluego) to compile Qt with VS2012, and I can use that version with…
Sebastian Zander
  • 347
  • 1
  • 4
  • 13
1
vote
3 answers

How to use .net async CTP with just one thread

SO I've been doing a ton of reading lately about the net Async CTP and one thing that keeps coming up are sentences like these: "Asynchrony is not about starting new threads, its about multiplexing work", and "Asynchrony without multithreading is…
Michael Ray Lovett
  • 6,668
  • 7
  • 27
  • 36
0
votes
1 answer

WPF control directly inside Excel CTP

Currently I have a WinForm user control in the Excel CTP, which in turn hosts a WPF user control via an element host. Things are working well except for performance issues. My question is - is it possible to load the WPF control directly without…
quixver
  • 564
  • 1
  • 4
  • 11
0
votes
1 answer

How to enter an id in a select multiple cakephp

I want to put an id to my select but I don't know how to do it. echo $this->form->select("alergias2", ["Alergias"=>$alergias],["multiple"=>true]); I have tried it as follows. echo $this->form->select("alergias2", array('id'=> 'alergia'),…
0
votes
1 answer

Code First Entity Configuration ToTable Problem

If I specify ToTable in the OnModelCreating override like so: protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity() .MapSingleType() .ToTable("my_teams"); } it creates dbo.my_teams, however…
mxmissile
  • 11,464
  • 3
  • 53
  • 79
0
votes
0 answers

cakephp how to specify home and away team names in index.ctp and relationship in models

Match and team has many to many relationship but it does not work if i put the associations. and how to get home and away team names from the team table instead of home_id and team_id. please help MatchesController.php class MatchesController…
0
votes
1 answer

Can't open simple Console Application with Visual Studio 2015 CTP Preview

I downloaded Visual Studio 2015 CTP Preview because I wanted to test to see if I could load in a Roslyn Code Issue extension. When I try to create a simple console application using New Project -> Console Aplication I am getting the following error…
TheJediCowboy
  • 8,924
  • 28
  • 136
  • 208
0
votes
1 answer

Default layout cakePHP

I have a simple question , I am trying to use ONE default layout with header and footer to automatically show in other .ctp files when I make them, but for some reason I cannot do it and also I was thinking of using one javascript file to show in…
Masnad Hossain
  • 59
  • 1
  • 1
  • 14
0
votes
2 answers

Could not load file or assembly while configuring Build vNext Agent

When trying to configure a Build vNext agent I keep running into the following exception. Unhandled Exception: System.IO.FileLoadException: Could not load file or assembly 'VsoAgent, Version=14.0.0.0, Culture=neutral,…
Tjeerd
  • 85
  • 1
  • 5
0
votes
3 answers

Syntax highlighting for .ctp files with Netbeans+ Cakephp in Mac OS

I code Cakephp with Netbeans in Mac Os. My syntaxs in .ctp file doesn't highlighted(colored). I found the answer but only for Windows :( . How can I do for Mac? Tks!
Huy Hóm Hỉnh
  • 597
  • 7
  • 18