• Member Avatar for pritaeas
    pritaeas

    Replied To a Post in display image from mysql db in php page

    > how to display multiple images in a row Next time start a new discussion thread instead of replying to an old one. Please explain clearly what you want, what …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Question about Division in Java

    https://en.wikipedia.org/wiki/Floating_point#Accuracy_problems
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in PHP OOP SELECT Query

    Have a look at [this example](http://culttt.com/2012/10/01/roll-your-own-pdo-php-class/).
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Sending object over network

    As opposed to XML, [JSON](http://www.newtonsoft.com/json) is another option. Both are easy to read when debugging, JSON is only a little less bulky.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Questions not answered on DANIWEB

    The last unanswered, from 6 hours ago (as of this writing) is hardly something to worry about. It might be urgent for you, but everyone here has stuff to do …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in C# how to read int from file?

    http://www.dotnetperls.com/parse
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Update Jquery

    Just download the new version and link it, or link directly to the [online version](https://code.jquery.com/jquery/). I wonder why you are still using such an old version, the latest is 3.1.0
  • Member Avatar for pritaeas
    pritaeas

    Edited html to PDF conversion Code in c#

    i need a code in c# so that i can convert webpages n html pages into PDF format
  • Member Avatar for pritaeas
    pritaeas

    Edited C minor bug

    Hi guys after fixing my previous bug this one has resulted. What I am trying to do: 1. Make getchar() read only one character per input 2. Make the while …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Insert text into textarea from server file

    http://php.net/manual/en/function.file-get-contents.php get_file_contents is not a function, and you do not need line 14. $mytextfile = file_get_contents("../images/comments.txt");
  • Member Avatar for pritaeas
    pritaeas

    Edited Insert text into textarea from server file

    I am trying to load text into a form (textarea) from an existing text file resident on the server. I am having no luck. The code I am using (with …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in vb.net listview :low stocks in database hightlight background of listview

    > forecolor mu value of stocks in listview in a column stocks In C# this works for SubItems. Am sure you can convert it to what you need in VB.NET: …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Get hours logged per month

    You need to split your duration into three columns, the first the same as now, the second and third should be filled when the months differ between start and finish. …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Get hours logged per month

    Add the `MONTH()` part to your select clause, so you can use an `IF()` to determine your calculation when the start and finish month is different.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Configurable Drag and Drop Web App

    Here's a [nice HTML5 intro](http://www.codeproject.com/Articles/774529/Beginners-Guide-to-HTML-CSS-HTML-API-Grab-Bag) on drag&drop.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in How to read xml with msxml

    The code can be downloaded from MSDN.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in How to PM

    > What is wrong with this? If there are no new messages, it defaults to showing an archive of old messages, as opposed to giving you an error message saying …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in How to read xml with msxml

    [Get Ready to Work with MSXML (C/C++) on MSDN](https://msdn.microsoft.com/en-us/library/ms765540(v=vs.85).aspx) has samples too.
  • Member Avatar for pritaeas
    pritaeas

    Edited failed to get xml attribute value ... Annoyed by error "Namespace Manager o

    **I have the xml file below from a blogger rss feed** <rss> <channel> <item> <guid isPermaLink="false">tag:blogger.com,1999:blog-000000.post-0000000</guid> <pubDate>Wed, 25 May 2016 18:00:00 +0000</pubDate> <atom:updated>2016-05-25T19:01:58.172+01:00</atom:updated> <category domain="http://www.blogger.com/atom/ns#"></category> <category domain="http://www.blogger.com/atom/ns#"></category> <title> "sorry... google …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in qrcode display

    Try the tool I linked, and if you have problems report back here with your new code.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in qrcode display

    What exactly are you trying to do? Open existing image? Or do you want to generate the QR code images with a tool like [this](http://phpqrcode.sourceforge.net)?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in PHP login Form

    > with below code i always receive error " Trying to get property of non-object in " What line exactly?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in FPDF output error ...

    If line 7 is a `header();` redirect, then place an `exit();` after it. Might be the cause.
  • Member Avatar for pritaeas
    pritaeas

    Edited How to recover android phone contacts?

    How to recover android phone contacts?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Cannot Retrieve Pdf From Mysql Using Fpdi In Php

    > still it does not work Be more specific. Show your new code.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Cannot Retrieve Pdf From Mysql Using Fpdi In Php

    > while($results = mysql_query("$sql") or die("Invalid query: " . mysql_error()); That's rather messy. Try: $result = mysql_query($sql) or die('Invalid query: ' . mysql_error()); if ($result && $row = mysql_fetch_assoc($result)) { …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in New to this website

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in C# HTTPWebrequest Cookies

    Have you tried stripped down code using only webrequest with the cookiecontainer on a regular domain, so you know it works? Or does it always fail, on any domain?
  • Member Avatar for pritaeas
    pritaeas

    Edited Is it Possible for us to transfer iphone voice memos to computer? Urgently

    Recently, one of my friends on FB asked me a question: Whether can we transfer our iphone voice memos to pc or mac for backup. At once, I answered him …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in compare array values with file content

    > how to remove the row from file Create a new array containing only the values you want to keep. At the end, overwrite your existing file. > the data …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in compare array values with file content

    So. What do you have so far?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in VB Coding

    Try explaining with an example.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Encrypting files using an existing encrypted password and password salt?

    Another option is to generate a password, and email it to the receiver after he downloads the file successfully.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in recipe program

    > help write a program What have you got so far then?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Encrypting files using an existing encrypted password and password salt?

    Can you not zip the files using the password? Zip has built-in support for encrypting it's contents. You'd need the original password though. If you cannot decrypt them, I doubt …
  • Member Avatar for pritaeas
    pritaeas

    Edited Keep getting empty textarea value

    Hello . Im trying to submit a form that is inside a php while loop ( im using the loop to fitch data from the database , and depends on …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in How to do in PHP for getting json format

    Can you be a bit clearer? Do you want that as output, or do you want to read it in PHP?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Can't Quite figure this one out ORA-00907: missing right parenthesis

    > ORA-00907: missing right parenthesis It's the double closing at the end, should be only one.
  • Member Avatar for pritaeas
    pritaeas

    Edited how to parse an xml attribute using python

    hi all, how to parse an xml attributes using python. I want to read or extract msg values from xml using python. <msg timestamp="20160817 12:46:42.520" level="INFO">Average : 0.14 % CPU …
  • Member Avatar for pritaeas
    pritaeas

    Edited visual basics importance

    write a programme in visual basic to create anarray of size 5 to store any 5 names and display them
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in visual basics importance

    What do you have so far, and what exactly is the problem? You won't be getting code here, so if that's what you want, tough luck.
  • Member Avatar for pritaeas
    pritaeas

    Edited Read This Before Posting A Question

    # NOTE # This was a PHP sticky, and I am working to turn it into a development sticky. If you have any comments, additions or other observations, please reply …
  • Member Avatar for pritaeas
    pritaeas

    Edited Read This Before Posting A Question

    # NOTE # This was a PHP sticky, and I am working to turn it into a development sticky. If you have any comments, additions or other observations, please reply …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Is it possible to detect file copying/moving

    It should be possible to write a wrapper assembly in C++/C# and use that in VB.NET. I doubt you are the first one looking for it. Check CodeProject/GitHub or similar …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Is it possible to detect file copying/moving

    > They detect the request of file copy/remove and they then do the required task Are you looking for a [file copy hook](https://msdn.microsoft.com/en-us/library/windows/desktop/cc144063(v=vs.85).aspx)?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Is it possible to detect file copying/moving

    See the [FileSystemWatcher Class](https://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher(v=vs.110).aspx) Do note, that it works for copying, but does not work as expected when moving files.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in greeting from new guy

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Endorsed Ancient Dragon

  • Member Avatar for pritaeas
    pritaeas

    Endorsed Ancient Dragon

  • Member Avatar for pritaeas
    pritaeas

    Endorsed Ancient Dragon

The End.