• Member Avatar for pritaeas
    pritaeas

    Edited break one char into two

    Hey, I would like to break one char for example "t6" into to chars t and 6 look at what i did... int a,b; temp = *arraystr[2] % '10'; a …
  • Member Avatar for pritaeas
    pritaeas

    Edited JOptionPane question

    Hi guys, Im trying some stuff out in java but im a little stuck and confused by stackoverflow answers so I wanted to ask here if its ok. I have …
  • Member Avatar for pritaeas
    pritaeas

    Edited datepicker data validation

    I already have a datepicker to get the start date and the final date, it already makes the validation when the user clicks only on the calendar, but when it's …
  • Member Avatar for pritaeas
    pritaeas

    Edited Extracting Phone numbers from Documents(Word, PDF)

    Hi Friends, I want to do a project for Parsing Resume in C#. i.e when we upload resumes(More than 100), it should extract Name, email id, phone no, skills. **Please …
  • Member Avatar for pritaeas
    pritaeas

    Began Watching Linq Consecutive GroupBy

    For a report I had to show a list of items (ID's). Instead of showing them all, they wanted to show consecutive items separated by a dash. Just like the …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Hello

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Difference between var $name and var name

    @Troy: any particular reason, or just ranting?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in GROUP BY with Totals

    Not with a single query.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Difference between var $name and var name

    Technically nothing, but the ones with `$` usually help to identify jQuery elements easily.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Spellchecking your code

    Code completion in Visual Studio (with ReSharper) quickly identifies undefined classes or paths to missing files (usually typos) and more. At home I also use PhpStorm which offers similar functionality. …
  • Member Avatar for pritaeas
    pritaeas

    Edited web design company

    How to push our website on SERP first page.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Multiple inheritance

    No. PHP does not support it. If your design requires multiple inheritance, you need to redesign. [Traits](http://php.net/manual/en/language.oop5.traits.php) can simulate it a little.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in hey

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Edited hey

    hello every one i m vinay chandel
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in New to Daniweb, Returning to Programming.

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Websocket implementation for periodic ajax call in php API

    http://www.developerfusion.com/article/143158/an-introduction-to-websockets/
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in System.NullReferenceException: Object reference not set to an instance of a

    You should only use one connection. The second lacks an Open() though.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in System.NullReferenceException: Object reference not set to an instance of a

    > Dim cmd As OleDbCommand This just defines your variable, but does not create an instance. You'll need something like this (not sure how VB syntax should be in this …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Update div with jquery $.ajax

    Something like this: $(".form-inputs").html(data);
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Bounding Box - Bezier Curve

    Here's an [SO thread](http://stackoverflow.com/questions/2587751/an-algorithm-to-find-bounding-box-of-closed-bezier-curves) with several examples and links. Perhaps it helps.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Identify the website

    I would think that if you have to work on an existing website, you'd at least have all the details of that site.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Update div with jquery $.ajax

    There is no `echo` if you do not have results. Send something if row count is zero, so you can check that that maybe the case. You won't get anything …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in System.NullReferenceException: Object reference not set to an instance of a

    One of your objects is `null`. Either `cmd`, `Request`, or `Request.QueryString("UserEmail")`.
  • Member Avatar for pritaeas
    pritaeas

    Edited Identify the website

    Hi..., I am a programmer.sometimes I am having work to improve the existing website at that time I am confused which cms is used for that website...can any one help …
  • Member Avatar for pritaeas
    pritaeas

    Marked Solved Status for Delete article workshop draft

    How can I delete a draft from the Article Workshop?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Delete article workshop draft

    Done. I stored code there to write a code snippet, but noticed later that that's not an option from there.
  • Member Avatar for pritaeas
    pritaeas

    Edited Linq Consecutive GroupBy

    For a report I had to show a list of items (ID's). Instead of showing them all, they wanted to show consecutive items separated by a dash. Just like the …
  • Member Avatar for pritaeas
    pritaeas

    Created Delete article workshop draft

    How can I delete a draft from the Article Workshop?
  • Member Avatar for pritaeas
    pritaeas

    Edited Linq Consecutive GroupBy

    For a report I had to show a list of items (ID's). Instead of showing them all, they wanted to show consecutive items separated by a dash. Just like the …
  • Member Avatar for pritaeas
    pritaeas

    Created Linq Consecutive GroupBy

    For a report I had to show a list of items (ID's). Instead of showing them all, they wanted to show consecutive items separated by a dash. Just like the …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Controlling Responsive positioning

    > Is it possible to get the "featuredimage" div (in blue) so that it aligns to the bottom of the "memberinfo" div? Likely, but without seeing your code I doubt …
  • Member Avatar for pritaeas
    pritaeas

    Edited Fibonacci code in C#

    I'm trying to write Fibonacci code for the first 100 numbers. It works until I get to number 94. 93 12200160415121876738 ok 94 1293530146158671551 mine 94 19740274219868223167 should be this …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Can I run a while loop resetting the variable outside it?

    Oh wait, I misunderstood. You want to show all streams but embed only one online one. Remove the break. Add a boolean before the while `$embedded = false;` Around line …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Can I run a while loop resetting the variable outside it?

    > How can I make it so that it queries the array and executes the first embed of an online stream? Add a `break;` to exit your while loop.
  • Member Avatar for pritaeas
    pritaeas

    Edited Can I run a while loop resetting the variable outside it?

    I have this snippet below, I'm trying to query if a cast is online or not (That part works when I take it outside the while loop) but then in …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in display images from database

    Replace echo "<td>{$imgname}</td>"; with echo "<td><img src='path_to_image_folder/{$imgname}'></td>";
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Am having abit of trouble with GetProgrammDir

    Windows applications should be using: GetSpecialFolderLocation(CSIDL_APPDATA); to store application data in the current user's folder.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Hello to all

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Problems loading this page?

    Opera shows this in the console, but appears to work fine: indexoc.asp:677 Uncaught TypeError: undefined is not a function VM68:8 Uncaught TypeError: undefined is not a function jquery.min.js:18 'webkitRequestAnimationFrame' is …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Controlling Responsive positioning

    https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries
  • Member Avatar for pritaeas
    pritaeas

    Edited query

    how to edit a image from mysql database in php , that should image should be displayed on the form
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in How to send sms notification?

    Search for an SMS gateway.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in new to programming and to Daniweb

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Something new

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Edited Something new

    Hello Something new at forum
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in 302 Response Location field matches original URL

    > What is happening here? Could be anything. Faulty redirect, some session code playing tricks, hard to say. If the website tells you to redirect, follow it (whether or not …
  • Member Avatar for pritaeas
    pritaeas

    Edited Can anyone talk about Basic Off Page Strategies and Guidelines

    Hi Guys, am a junior seo analyst, can anyone share your off page techniques to improve SERP and generate traffic for my website. Modify message
  • Member Avatar for pritaeas
    pritaeas

    Edited Listbox dose not show

    when done with the form it will come out antother that is this form in the listbox1 should show out dun need click anthing it will come out auto of …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in hardmode is here

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Edited Google Analytics Vs Universal Analytics

    Hello to every one, am a junior seo analyst, I have to know one thing, which is most-useful one for seo analyst, **Google Analytics or Universal Analytics ** try to …

The End.