• Member Avatar for pritaeas
    pritaeas

    Endorsed Ancient Dragon

  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in c#

    > inheritance error is::Error 1 Inconsistent accessibility: base class 'person' is less accessible than class 'employee' On line 25 declare your class `public`. It is missing so it's default accessor …
  • Member Avatar for pritaeas
    pritaeas

    Edited c#

    inheritance error is::Error 1 Inconsistent accessibility: base class 'person' is less accessible than class 'employee' using System; using System.Collections.Generic; using System.Linq; using System.Text; //person class public class person { public …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Category Option not adding to SQL database

    Post the HTML that is generated here.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Category Option not adding to SQL database

    On Line 43 do: print_r($_POST['catID']); And post the result here. If it is not an array, then nothing happens. If there is no result at all, do: print_r($_POST); And post …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Installing pymongo package to paython 3.5

    > what is the mean by the error produced when i try to install using pip Means that pymongo is not compatible with python 3.5 (or so I think).
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in U A E EMIRATES ID CARD READING VB6

    What exactly do you want to read, and what kind of card are you talking about?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Installing pymongo package to paython 3.5

    https://api.mongodb.com/python/current/python3.html > PyMongo supports CPython 3.3+ and PyPy3. No mention of 3.5
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Category Option not adding to SQL database

    Show your changed/latest code.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Code Efficiency

    Don't sacrifice readability for "efficiency". Personally I'd use this: bool containsLeft = mystring.Contains("left"); bool containsRight = mystring.Contains("right"); if (containsLeft || containsRight) { string test = containsLeft ? "left" : "right"; …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in every 5 minutes i need to execute a php page..is it possible through php

    Not recommended. Rather use a cron job, or another scheduler depending on your platform.
  • 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 jeetay test

    Welcome to DaniWeb.
  • Member Avatar for pritaeas
    pritaeas

    Edited jeetay test

    hllo everyone how are you today.....
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Category Option not adding to SQL database

    Line 44 above should be: if (is_array($_POST['catID'])){
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Problem on installing Xamarin setup for Visual Studio 2015

    There always was one, but perhaps no longer then.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Problem on installing Xamarin setup for Visual Studio 2015

    Have you tried the ISO?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Problem on installing Xamarin setup for Visual Studio 2015

    Have you downloaded the most recent installation?
  • Member Avatar for pritaeas
    pritaeas

    Edited Single sign-in with DAZAH

    Hello everyone, I want to use Dazah app for single sign-in at my forum, http://forums.tssfl.com, just as it works with the Daniweb. I'm currently doing installation, which I hope it …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Single sign-in with DAZAH

    https://www.dazah.com/developers
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in How to pass values using load in jquery

    http://api.jquery.com/jQuery.ajax/ See the examples at the bottom.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in How to pass values using load in jquery

    Is there any reason you are using `load()` instead of `ajax()`? What exactly are you trying to do?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Category Option not adding to SQL database

    `$catID` is never given a value before line 44, so `is_array` will return `false`
  • Member Avatar for pritaeas
    pritaeas

    Edited Category Option not adding to SQL database

    Dear Developers, This is the part of my blog.While adding new post to my blog the category option not updating to database add_post.php <h2>Add Post</h2> <?php //if form has been …
  • 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

    Gave Reputation to rubberman in Data structure and algorithm

    Read Niklaus Wirth's seminal CS text "Algorithms + Data Structures = Programs". It has had an honored place on my bookshelf for many years.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Angular 2. Is it ready ?

    https://github.com/angular/angular/milestones Check out the open bugs, and decide whether or not you want to take the chance. It should be stable enough or there wouldn't have been a Release Candidate.
  • Member Avatar for pritaeas
    pritaeas

    Edited Merge multiple Excel sheets using VB.net

    I have a few excel files and i want to merge all the files into one. All the data can be merged into one sheet in the final excel file. …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Merge multiple Excel sheets using VB.net

    http://www.dotnetperls.com/excel-vbnet https://support.microsoft.com/en-us/kb/301982
  • Member Avatar for pritaeas
    pritaeas

    Endorsed snippsat

  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in PHP/ JSON API: How to get results from this API

    If not one call yields results, better check with the provider of the API. Have you tried with SoapUI?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in PHP/ JSON API: How to get results from this API

    Is there any other call that DOES give you results?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in PHP/ JSON API: How to get results from this API

    > I got empty results, and I expect to get the following results Did you get an empty json result, or was there an error somewhere? Is there a test …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in Converting VB5 source code to VB.NET

    I wouldn't recommend using any tool to convert. You need to redesign and maybe rethink how things are done anyway, so do it by hand.
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in PHP/ JSON API: How to get results from this API

    > I have no idea if you need to login to the API, or what else might be required. What is the URL of the API documentation?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in PHP/ JSON API: How to get results from this API

    > What fails? What did you expect? Answer those too, please. I have no idea if you need to login to the API, or what else might be required. What …
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in PHP/ JSON API: How to get results from this API

    > it doesn't work You need to be more specific than that. What code do you use? What fails? What did you expect?
  • Member Avatar for pritaeas
    pritaeas

    Replied To a Post in I have a DataList and I have added a datatable in back end. How can I add c

    IIRC a datalist just outputs a html table. So look at the generated html source and you'll know for sure.
  • 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 Retrieve all records with a certain name

    I see an `if` statement that checks whether you have a result, but no loop to handle more than the first result.
  • 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

    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

    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

    Endorsed Dani

  • Member Avatar for pritaeas
    pritaeas

    Endorsed mike_2000_17

  • Member Avatar for pritaeas
    pritaeas

    Endorsed mike_2000_17

  • Member Avatar for pritaeas
    pritaeas

    Endorsed mike_2000_17

The End.