• Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching Retro game QIX logic

    Hello. First time posting on these forums as I am really stuck on my code. The language I am using is GML (Game Maker Language) and the program Game Maker: …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Retro game QIX logic

    Are you running through every pixel at a time? How about using a scaling algorithm rather? Let's say, each entry in your grid equals 4 real pixels. Then you already …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching Keeping sensitive information off of PC/Mac

    Hi, I am new to the forum. I am working with a small investment company that happens to be situated have sensitive data on their computers. It is a subsidiary …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Keeping sensitive information off of PC/Mac

    Hi. Even while using a cloud solution, you will have some data on your machine that is sensitive. The best approach, even with a cloud host, is to encrypt your …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Stopped Watching What is meaning of hidden content?

    Can we use hidden content for ranking website?
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching [URGENT]Integer array of pixels to Image

    Hello everyone! I have tried again and again to get this to work using multiple suggestions from the Internet. I am trying to convert an int[] to an Image object. …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in [URGENT]Integer array of pixels to Image

    Are you 100% sure that you actually have data in your array?
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching beginner

    hi every one am a beginner and would like to know the best tutorials which will help me in mobile developments
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in beginner

    Well, that depends on what you mean by mobile development. Do you mean mobile applications, mobile-friendly websites, native applications, hybrid applications? And, most importantly, which platform do you want to …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Error in beginning android tutorials

    The error code was on line 23, character number 30. That's way better than C++ would have given you :D
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching Single Store CRM application to Multi Store CRM

    My company has Desktop application developed in vb.net using devexpress controls. Back End database is MySQL. Company is in retailing and have 2 retail stores in in same city. Both …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Single Store CRM application to Multi Store CRM

    Migrating from one database to another is never a smooth operation, you might be setting yourself up for a lot of effort. Plus the licenses required for MS-SQL might be …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching Error: illegal start of expression

    Hi, i recently begun learning java and encryption. I found some code from a website that is supposed to decrypt lastlogin files found in minecraft. When i try to compile …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Error: illegal start of expression

    The first error is easy - you are not specifying a return type. In Java, only constructors do not specify return types. Did you copy and paste this code into …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching New CPU shuts off computer

    I've recently installed a new CPU (Core2Quad Intel) and my computer no longer stays on for more than a minute. All bios are updated and the computer runs fine on …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in New CPU shuts off computer

    If you are using the old heatsink, remember, it might not be transferring heat fast enough for the new CPU. Did you thoroughly clean the old heatsink before reusing it? …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Html 5 tutorial

    I live in a country with 11 different languages, you learn to read between the lines :)
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Html 5 tutorial

    I think the OP asked about a learning platform for HTML5, not what kind of platform HTML5 is.
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching CPU power question

    Okay computer will turn on, no post, but HD and lights come on without power to the CPU plug in. When I put the plug back in for the CPU …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in CPU power question

    Is the CPU fan turning? I've had some MB's that won't power up if the CPU fan doesn't reach full speed. Also, it could be that the CPU is not …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching Html 5 tutorial

    I want to be an expertise in html 5.can any body inform me about some platform of learning html 5
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Html 5 tutorial

    I highly recommend that you consider the following online resources, in the order provided : http://www.codecademy.com - a great resource for absolute beginners. https://dash.generalassemb.ly/ - after CodeCademy, you'll be ready …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching servlet getting value from html5 date

    hello <input type="date" name="dob" required> this is the html5 date picker String date=request.getParameter("dob").toString() how to get value from tat date picker
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in servlet getting value from html5 date

    The date is just a String value, so you could simply parse it using a SimpleDateFormatter. I'm assuming your variable name of *date* here: SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); Date …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching how to match code with existing exe file

    I have a Project which is running on client side.i have to develop a program to delete some useless files from the project which is running on client side.so what …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in how to match code with existing exe file

    Are you using an installer? With most installers, you can run scripts after installation, so you could simply have an installer that upgrades the existing product and, as part of …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching What is meaning of hidden content?

    Can we use hidden content for ranking website?
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in What is meaning of hidden content?

    That's one of the things that most search engines look for to disqualify you with!
  • Member Avatar for Ewald Horn
    Ewald Horn

    Gave Reputation to pritaeas in WP Demonstration - Why is OOP Important

    Nice example. Just a rant. I hate WP's "OOP" because of this: global $wpdb; This goes against all that OO stands for, and although I understand the ease of use, …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching WP Demonstration - Why is OOP Important

    First things first, the story about this article. Recently I've created an Wordpress Plugin [WordPress - WP - Keywords To Tooltip | CodeCanyon](http://codecanyon.net/item/wp-keywords-to-tooltip/6513598) After a few days, somebody asked me …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in WP Demonstration - Why is OOP Important

    Excellent! OOP is great for exactly this use-case, but, be cautioned, OOP design should be carefully considered, it can also lead to a whole nightmare of intricate dependencies and completely …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching Live Chat Support Software

    I have read many topic about live chat where had been described benefits of live chat. I want to know that one thing is website's traffic can be increased by …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Live Chat Support Software

    Live chat creates a sense of community and makes websites appear more personnel. It's all fine and dandy to be able to send a support mail, but having the opportunity …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Visual studio 2013: Problem opening an mvc project

    Ah, another reason why I left Visual Studio behind. I'm sorry, if that dindn't work, you might have to visit MSDN and submit a post to their forum, it's obviously …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching Get certain text from site loaded in android webview

    Hello, I am developing an android application that sends an sms message to a certain number depending on what is dispayed in the webview. The text in the site that …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Get certain text from site loaded in android webview

    Ah, findall is used to highlight words in the webview, and it's rather buggy. What you really should do is to make a HttpClient call to the webpage to retrieve …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching which editor i have to use for pasting tables from another files

    Hi, i am using netbeans 7.0.1, When i copy a table from ms-word document and paste it in editorpane or text area palette, i am unable to retain same table …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in which editor i have to use for pasting tables from another files

    That's quite a mean feat you wish to accomplish. Your best bet is to either use a rich text edit box, or, better yet, something that supports HTML and then …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Error in beginning android tutorials

    Anytime! The error message gave you a rather cryptic clue, as you get more used to it, you'll learn to read it better. Practice practice practice. Plus it always helps …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Stopped Watching reading text into an array in java

    hi, could sm1 please show me code that can sort and read text/string character by character into an array i.e identify integers and characters and put them in separate fields …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching Error in beginning android tutorials

    May sound all too easy for some, but I'm just getting started on android development and I can't find out why I got an error when everything is exactly as …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Error in beginning android tutorials

    Hi. You are referencing R.id.container - but none of your components are called that. It looks like you are missing something from whatever tutorial you are using. I can assure …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching Generating natural language

    Hello, For a hobby project i'm working on i'd like to be able to generate some text based on some random inputs. Now i'd like this text to seem like …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching Run cron job every few days

    Hi, Just want to make sure I'm doing this correct in my crontab. 5 10 */4 * * Does this, indeed, run once at 10:05 am every four days?
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching compaq blackscreen - no display

    okay guys, well i have read every above post from previous threads relating to this topic as my daughters Compaq laptop was working 3 nights ago and when she went …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Began Watching Visual studio 2013: Problem opening an mvc project

    I get an error message when i open an MVC project. The error is attached as screenshot. While the same project opens in another machine. Steps taken by me to …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Run cron job every few days

    Hi, I have no idea how to get BACK to the chat room haha! See, noob of the year in the making! * * * * * command to be …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Visual studio 2013: Problem opening an mvc project

    There's a post on the Microsoft website that has a probable solution : http://social.msdn.microsoft.com/Forums/en-US/1d5cb9c7-af77-4bcd-8421-e813aff88bd3/help-with-visual-studio-2012-error-unable-to-access-the-iis-metabase?forum=visualstudiogeneral Looks like it's an old issue that is run into now and then. If that doesn't …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in Add,delete,modify,display records from text file in C

    Please show us your effort. I, for one, am very happy to help you, but I'm certainly not doing your homework for you. Put in a decent effort, show that …
  • Member Avatar for Ewald Horn
    Ewald Horn

    Replied To a Post in compaq blackscreen - no display

    Ah. It seems you've tried most of the "easy" remedies. First question - have you connected it to an external screen just to check if it's not the videocard? And …

The End.