• Member Avatar for hericles
    hericles

    Began Watching radio buttons are not shown in ie9 and above

    Hi., I'm new to php using yii framework.The radiobuttons in the radio buttonlist are not displayed in IE9 and above.The code written is as follows. The radio buttons are displayed …
  • Member Avatar for hericles
    hericles

    Replied To a Post in radio buttons are not shown in ie9 and above

    Do you have any CSS specifying overflow:hidden for the divs containing the radio buttons? Sounds random but I know thats been an issue before.
  • Member Avatar for hericles
    hericles

    Began Watching Custom intranet or use existing CMS/other platform?

    I am needing to build a custom portal for very specific needs in my client. They work with dozens of outside contractors and so the basic idea is that the …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Custom intranet or use existing CMS/other platform?

    Have you looked at Alfresco? It's based on the document sharing idea, a bit like sharepoint, but is quite customisable. It won't have everything you need immediately but it must …
  • Member Avatar for hericles
    hericles

    Began Watching Alexa rank

    How to calculate Alexa rank? What is functionality for it.
  • Member Avatar for hericles
    hericles

    Replied To a Post in Alexa rank

    From Alexa's support site [Click Here](https://alexa.zendesk.com/hc/en-us/articles/200449744-How-are-Alexa-s-traffic-rankings-determined-)
  • Member Avatar for hericles
    hericles

    Replied To a Post in How to get id(user_id or manager_id) of currently logged in user in c#

    OK, I think I understand now. Seeing as you have a direct relation between a user and the manager that created them (created_by) I don't think you need to alter …
  • Member Avatar for hericles
    hericles

    Began Watching How to get id(user_id or manager_id) of currently logged in user in c#

    Hi my name is vishal for past 6 days i have been breaking my head on how to get id(user_id or manager_id) of currently logged in user in my application …
  • Member Avatar for hericles
    hericles

    Replied To a Post in How to get id(user_id or manager_id) of currently logged in user in c#

    If you just want the ID of the user logging in why don't you select the ID in the logging in query rather than return the count?
  • Member Avatar for hericles
    hericles

    Replied To a Post in Missing Rows?

    Is the PHP code being used by anything else? If yes, then you could check whether it is your code (possibly) by seeing if the error occurs when another app …
  • Member Avatar for hericles
    hericles

    Began Watching standing/treadmill desk

    This is possibly a very strange question, and I'm not sure where to ask it! But is there anyone around that uses a standing desk or a treadmill desk, and …
  • Member Avatar for hericles
    hericles

    Replied To a Post in standing/treadmill desk

    I've had a desk that could go from sitting height to standing at the push of a button and once I figured out the correct height to have the desk …
  • Member Avatar for hericles
    hericles

    Began Watching Missing Rows?

    Hello, I'm having a problem with my MySQL InnoDB table, only one of five. Every now and then a row or two will go missing completely with no trace of …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Missing Rows?

    To be clear, are you saying that the database removes the rows? that is, no calling code is responsible? And if the database has removed a row, your app won't …
  • Member Avatar for hericles
    hericles

    Began Watching hacking

    How can I protect my fb acount
  • Member Avatar for hericles
    hericles

    Replied To a Post in hacking

    A strong password maybe?? I take you are referring to people hacking your password right? In which case you can't stop someone from guessing your password, if they have enough …
  • Member Avatar for hericles
    hericles

    Began Watching jQuery code was working !

    The following code, use to work, now it's not ? $("<selector>").animate({bottom:'-1200'}), -1300, 'easeOutBounce'); });
  • Member Avatar for hericles
    hericles

    Replied To a Post in jQuery code was working !

    You have an extra ) after the '-1200'}
  • Member Avatar for hericles
    hericles

    Began Watching FileStream

    kay so we have an activity, the activity was to make a simple cashier system using filestream. So the layout will be there are 3 radio buttons ( foods,drinks,desserts) so …
  • Member Avatar for hericles
    hericles

    Replied To a Post in FileStream

    Make line 26: Loop Until count = lines.Length - 1 If you debugged this and stepped through it you would see that your loop is going around one time too …
  • Member Avatar for hericles
    hericles

    Began Watching PigLatin

    Hi, I am trying to get ahead of my course work for next term and teaching myself c#. I am trying to write a pig latin translator as an exercise …
  • Member Avatar for hericles
    hericles

    Replied To a Post in PigLatin

    It looks like all you need the variable to hold the translated string as it is built up. Define another string at the top and each loop through concatenate the …
  • Member Avatar for hericles
    hericles

    Began Watching forums

    is this true that its depend on the forum site to provide the do follow and the no follow links?
  • Member Avatar for hericles
    hericles

    Replied To a Post in forums

    If you mean some forums do allow link follows and some don't, you're right. Not all forums allow things like your signature or bio links to contribute to your site's …
  • Member Avatar for hericles
    hericles

    Began Watching HTML page within div

    I want a HTML page to be displayed within a DIV using jQuery. The following code isn't working ? $("tutorials .t").load("/path/path/cs_regular_tuts.htm")
  • Member Avatar for hericles
    hericles

    Replied To a Post in HTML page within div

    What is tutorials? Shouldn't it have a # or . in front of it if it is a page element?
  • Member Avatar for hericles
    hericles

    Replied To a Post in AddRange() method

    Exactly. It works like the zip or merge functions available in other languages, suching iterating throught the items in the object to be added and pushing them onto the add …
  • Member Avatar for hericles
    hericles

    Began Watching Show image database for each usercontrol

    Usercontrol1 private string lastName; private string nnovo; public string LastName { get { return lastName; } set { lastName = value; label2.Text = value; } } public string Nnovo { …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Show image database for each usercontrol

    Your user control just needs to include a picture box for you to pass the image url to. Or am I missing something?
  • Member Avatar for hericles
    hericles

    Began Watching AddRange() method

    If I have an array and an array list: int[] myArray = new int[2]; myArray[0] = 1; myArray[1] = 2; ArrayList myArrayList = new ArrayList(); myArrayList.Add("1st element"); myArrayList.AddRange(myArray); By calling …
  • Member Avatar for hericles
    hericles

    Replied To a Post in AddRange() method

    The AddRange function simply adds all of the objects in the added range to the arraylist. In your example, your arraylist would contain three items accessible at positions 0, 1 …
  • Member Avatar for hericles
    hericles

    Began Watching Article spinner website problom

    Hi guys, I wantto know that using article spinner website is good for SEO or not.
  • Member Avatar for hericles
    hericles

    Replied To a Post in Article spinner website problom

    While they can make your site look like it is actively putting up fresh content TO A WEB CRAWLER, it does nothing for the real users of your site. If …
  • Member Avatar for hericles
    hericles

    Began Watching Beards

    I have contributed to the 'Real World Computing' section of PC Pro magazine here in the UK for, come the next edition, what will be 20 years. During all of …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Beards

    Yes, I have a beard. The beard-to-face ratio at my work (counting just the coders) is 50%.
  • Member Avatar for hericles
    hericles

    Replied To a Post in help plz..before loading page check if record exists redirect else continue

    Assuming you have the user name stored in a variable do a SELECT against the database SELECT username FROM table_name WHERE username = ' . $username . ';' I'm not …
  • Member Avatar for hericles
    hericles

    Began Watching how to design a website using html?

    how to design a website using html?
  • Member Avatar for hericles
    hericles

    Replied To a Post in how to design a website using html?

    Your question is unclear. Do you want to learn HTML? Because if you knew HTML your question would be redundant...
  • Member Avatar for hericles
    hericles

    Began Watching Trouble with SQL INSERT Statement

    I am trying to insert some values into a database and I have the following SQL: insertString = "INSERT INTO SocialHistory (ExamID, Occupation, SafetyYN, ComputerYN, ComputerHrs) Values('" & CurrentExamID.ToString & …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Trouble with SQL INSERT Statement

    The parentheses is the problem. Your statement is trying to provide everything in the select statement as one column which means the total number of columns doesn't match. Something like …
  • Member Avatar for hericles
    hericles

    Began Watching help plz..before loading page check if record exists redirect else continue

    Thanks for your patience, i'm still trying to learn I've gotten most of my stuff on my website to work, but i'm trying to do one more thing I have …
  • Member Avatar for hericles
    hericles

    Replied To a Post in help plz..before loading page check if record exists redirect else continue

    You simply need to do a query to the table searching for that user name. If one row is returned then they have already created their account so redirect to …
  • Member Avatar for hericles
    hericles

    Began Watching Would it have been better to use dart instead of javascript?

    This question has been asked on forums like this, including this, and I want to put it out there. Javascript is bad alone. With html and css it gets a …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Would it have been better to use dart instead of javascript?

    Its the new (and not so new) javascript libraries like jQuery and angular that are moving javascript forward. If you wanted to limit yourself to plain old, original javascript, dart …
  • Member Avatar for hericles
    hericles

    Began Watching Retrieving user data upon login

    Greetings, I am having a problem on retrieving the users firstname after logging in. Here's my code <HTML> <BODY> <?php session_start(); include ("connectDB.php"); $stud_test_ID = $_POST["testIDtxt"]; $password_Field = $_POST["Passtxt"]; $insertSql …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Retrieving user data upon login

    So you are seeing the 'invalid student id' error? That would suggest your query string is returning zero. Confirm the format of the string by echoing it and make sure …
  • Member Avatar for hericles
    hericles

    Replied To a Post in How to open a PDF in Microsoft Access 2013

    It can be done as you describe it but you need a front end solution that takes care of the actual code and feeds the data into Access for storage. …
  • Member Avatar for hericles
    hericles

    Began Watching How to open a PDF in Microsoft Access 2013

    Hi All, I am trying to create a drawing database in Microsoft Access. Each user has a unique log in to the databse, when they log in and go to …
  • Member Avatar for hericles
    hericles

    Replied To a Post in How to open a PDF in Microsoft Access 2013

    Firstly, Access is a database system. It can't 'open' a pdf but it can store either it or its file location. What parts are you having trouble with exactly? Can …
  • Member Avatar for hericles
    hericles

    Began Watching find the matching image from the list

    Hi Dw I've create a program to capture the images using the webcam and now what I want is that before the image is saved the program verifies if that …

The End.