Click here to Skip to main content
15,896,606 members

Videos


Page 1 of 10
1 2 3 4 5 6 7 8 9 10


1. An internal error occurred - Remote Desktop
Hi there,I am trying to connect to my server (hosted by Hetzner). When I try connect I get an error saing "An internal error occurred". I managed to log in via their robot and restart the machine, but still cant connect? This worked before. No updates have been run to my...
Database Development » SQL Server » SQL Server 2008
DominicZA Updated: 4 Dec 2014
Rating: ( (No votes))
2. How can I get the horizontal offset of a Long List Selector
Hi there,I am trying to get the scroll distance in a long list selector. I have no issue getting the ViewportControl inside of it, however, when I get the viewport.Top value it is definitely too big. It jumps from 650 to 2800 after scrolling just a little bit. I am binding groups of items in...
Desktop Programming » XAML »
DominicZA Updated: 8 Jul 2014
Rating: ( (No votes))
3. Navigate to index in GridView
Hi there,I have a GridView with a datasource with a potentially infinite library of items. GridView handles this nicely by only loading what is required. My issue is this. If I want to quickly get to all my items that begin with the letter "P", how can I quickly navigate there without...
Desktop Programming » XAML »
DominicZA Updated: 5 Jun 2014
Rating: ( (No votes))
4. Getting Started with Assembler
Im currently a C# developer. I want to get into some low level programming but Im not sure of the best place to start, what software to use etc. Could someone point me in the right direction?
DominicZA Updated: 25 Sep 2013
Rating: ( (No votes))
5. Can select multiple items in Linq to SQL
Hi there,I am trying to do a join in SQL. I do the join but it always returns the first object instead of a collection of objects. Here is my code: IEnumerable data = (from figure in context.Figures join rarity in...
Database Development » SQL Server »
DominicZA Updated: 29 Aug 2013
Rating: ( (No votes))
6. Everything Except regex
I am trying to remove all the instances of a number except for a number that I supply. This is currently what I have:var ar = '10,13,9,8,13,10,5,3,1,9,5,8,10,2,6';var removed = ar.replace(new RegExp('[^(' + 10 + ')]', 'g'), '')The result of this is "101110110", but I need it to...
General Programming » Regular Expressions »
DominicZA Updated: 14 Aug 2013
Rating: 5.00/5 ( (1 vote))
.

()
» »
Updated:
Rating: ()
7. HTML app wont close when in home screen
Hi there,I am having a problem where I am saving my web app to the home screen of any iOS 6 device, and after playing around with it a bit, the app will not close. The app I am making has quite a lot of animations going on, but after profiling I cant see anything going too crazy. Ram and CPU...
Web Development » HTML5 »
DominicZA Updated: 23 May 2013
Rating: 1.00/5 ( (1 vote))
8. Facebook MVC Template is not showing
I downloaded and installed the ASP.Net and Web Tools but after the Facebook template doesnt show up like it should (see here) I am running VS2012 Ultimate. I also tried restarting my computer but this did not help.
DominicZA Updated: 15 May 2013
Rating: 2.00/5 ( (1 vote))
9. Register console app to work from any directory
I have written a console app. I want to know if there is a way that I can somehow "register" it so that I can call it from anywhere, kind of like git.So, I can open a console window and just go:myApp -myParamsThanks in advance,Dom
DominicZA Updated: 8 May 2013
Rating: ( (No votes))
10. Multiplying matrices in JavaScript
Hi,I am currently trying to multiply two matrices in JavaScript and have written the following function:MathHelper.multiplyMatrix = function(a, b) { if (a.length != b.length) return undefined; var result = []; var rowLength = Math.sqrt(a.length); for (i = 0; i
Programming Languages » Javascript »
DominicZA Updated: 15 Nov 2012
Rating: ( (No votes))
11. Get individual webkit transform properties
I am writing a small animation library. One thing that I need is a way to get the elements current rotateX, rotateY and rotateZ properties. I found this article http://css-tricks.com/get-value-of-css-rotation-through-javascript/[^], but they only returns the rotate property, not the individual...
Web Development » HTML5 »
DominicZA Updated: 12 Nov 2012
Rating: ( (No votes))
12. Question about HTML5 and Hardware Acceleration
I have a quick question. I am animating multiple divs and would like them to be hardware accelerated. If I just animate the top property of the element, but add translate3d(0,0,0) to its inline style, will this hardware accelerate it?If possible, a link to your answer would be...
Web Development » HTML5 »
DominicZA Updated: 11 Nov 2012
Rating: ( (No votes))
13. calculate minimum amount of notes needed
I am trying to write an algorithm that calculates the minimum number of "notes", or currency needed to get to a value.The most obvious way is to just say:var notes = [];while (val != 0) { //loop through array of possible notes for (note in noteArray) { if (note >=...
General Programming » Algorithms »
DominicZA Updated: 11 Nov 2012
Rating: ( (No votes))
14. Need Sql query to Linq
using (var myContext = new DataContext()){ myContext.TABLE_NAME.FirstOrDefault(x=> x.id== 1).Name = "New Name"; myContext.SaveChanges();}
Web Development » ASP.NET »
DominicZA Updated: 9 Oct 2012
Rating: ( (No votes))
15. Javascript animation problem
I am busy writing a simple little animation library. The only thing I need is movement, so using something like jQuery or Zepto is going to be overkill. Plus, I want to use this to learn. My Move function takes 4 parameters. x, y, interval and callback. It works fine but for 2 issues. The...
Web Development » HTML »
DominicZA Updated: 27 Aug 2012
Rating: ( (No votes))
16. Sending Email is timing out
I am trying to send an email through code. Everything seems to be right, but its timing out. Here is my code:MailAddress fromAddress = new MailAddress("testmail@interwebs.com"); MailAddress toAddress = new MailAddress("domlennonza@gmail.com"); string subject =...
DominicZA Updated: 29 Jul 2012
Rating: ( (No votes))
17. Call C# function from JavaScript
Hi there. I am trying to find a way to download the data I have stored in an array into a text file. I am not using AJAX but I am using HTML5. What would be the best way to download this file? I know of the FileSaver API provided in HTML5 but cant seem to get it to work. The solution needs to...
Web Development » HTML5 »
DominicZA Updated: 8 Jul 2012
Rating: ( (No votes))
18. How to retrieve the image from database at random pick?
SELECT TOP 1 *FROM MyImageTableORDER BY NEWID()That should work!
Web Development » ASP.NET »
DominicZA Updated: 2 Jul 2012
Rating: ( (No votes))
19. A decent html 5 book
hi,Just a quick, super simple question. I have been working with ASP.Net for quite some time. I have lots of Javascript experience and would consider myself an "advanced level" developer. I am currently using HTML 5 at my current job, but I feel like I am not using it to its full potential....
Web Development » HTML5 »
DominicZA Updated: 21 Jun 2012
Rating: ( (No votes))

Page 1 of 10
1 2 3 4 5 6 7 8 9 10