• Member Avatar for hericles
    hericles

    Replied To a Post in problem with displaying submenu

    That is actually a very good point. +1
  • Member Avatar for hericles
    hericles

    Began Watching JOIN SQL

    Hi all , i have 2 tables first one called emp have 2 columns id and name second one called dep have id and empid and nameOfDep if i want …
  • Member Avatar for hericles
    hericles

    Replied To a Post in JOIN SQL

    For a start you database design could be better. You should have a table for employees, a table for department and a linking table that holds just employee IDs and …
  • Member Avatar for hericles
    hericles

    Began Watching Call to undefined function mysql_connect() in adodb\drivers\adodb-mysql.inc

    Hello, I am installed php 5.3.28 with apache 2.2 and mysql 5.5.38 on windows 64 bit machine, despite configuring php correctly with apache and also enabled the extensions, its not …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Call to undefined function mysql_connect() in adodb\drivers\adodb-mysql.inc

    Have you checked your extension_dir setting in the config file? It may be making PHP look in the worng location for extension modules. Otherwise, I got nothing...
  • Member Avatar for hericles
    hericles

    Began Watching PHP WITH JS validate Not work correctly :( !

    Hi all why this code doesn't work correctly but php validate without js work correctly and js without php validate work correctly ?! form.php <html> <head> <title>Registration Form</title> <script language="JavaScript" …
  • Member Avatar for hericles
    hericles

    Replied To a Post in PHP WITH JS validate Not work correctly :( !

    Any information about what goes wrong, displayed behaviour or error messages, would help us out a little.
  • Member Avatar for hericles
    hericles

    Began Watching problem with displaying submenu

    Hi i have a Div and underneath that there is another div. By default the second div is not visible. Now on mouse over of the first div i am …
  • Member Avatar for hericles
    hericles

    Replied To a Post in problem with displaying submenu

    Put the second div inside the first div, then the mouse never leaves div 1 and the mouse out event never fires.
  • Member Avatar for hericles
    hericles

    Replied To a Post in Problems with VB Console Program Function Wrong Answer

    Can't be that awake, you didn't read my first post ;) Brandy1, I really can't see what is causing the problem. I have looked at the PDF and gone through …
  • Member Avatar for hericles
    hericles

    Began Watching New application program

    Hi I need to create a desktop application for a small scale firm.Its more of an inventory managemnt sort of app. I need to keep a tab on various parameters-some …
  • Member Avatar for hericles
    hericles

    Replied To a Post in New application program

    The language used doesn't have much of an affect on the solution to be honest, not once OS restrictions are out of the way. You should pick a language that …
  • Member Avatar for hericles
    hericles

    Began Watching Problems with VB Console Program Function Wrong Answer

    Having a problem. Wrote program originally as VB Console using Sub procedures, had to change it to Function. It worked as sub procedures, but now as function it won't calculate …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Problems with VB Console Program Function Wrong Answer

    In the sample you posted above you aren't calling getExamGrades at all so dblMidTerm and dblFinal never change from zero. You then pass 2 zeros into CalculateTotalAverage and get nothing …
  • Member Avatar for hericles
    hericles

    Began Watching Ctrl + V in TextBox out in Frame

    Program is doing CTRL+V in textbox. But I want program to do it background when I was outside of frame. Program focus the textbox and press CTRL+V but it paste …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Ctrl + V in TextBox out in Frame

    I'm not sure what you want is possible. Have you coded this application yourself or is this something you want to achieve in other software? Naturally, if you selected and …
  • Member Avatar for hericles
    hericles

    Began Watching Compare two datatables and get the difference in third one

    how i can compare the data of two datatables ( dt1 , dt2 ) and got the difference in a thrid one dt3 dt1 and dt2 Structure ID Date Time …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Compare two datatables and get the difference in third one

    What difference exactly are you looking for? Rows in one that aren't in the other or changes to individual cells in a row? Is the number of rows the same …
  • Member Avatar for hericles
    hericles

    Began Watching Ecommerce integration to website.

    Dear friends , i've got a problem with ecommerce integration to my payment based website , i want to integrate the paypal or any other payment service provider to make …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Ecommerce integration to website.

    Most payment portals have an API that allows the website to make calls to the payment provider. exactly how they operate and fit together depends a lot on the particular …
  • Member Avatar for hericles
    hericles

    Began Watching surrogate, natural and candidate keys

    Can somebody please explain exatly what surrogate, natural and candidate keys are and how they differentate from each other? Thankyou
  • Member Avatar for hericles
    hericles

    Replied To a Post in surrogate, natural and candidate keys

    A canidate key is any column in the data that can be used to uniquely identify the rows. For example if you had an employee table that included the company's …
  • Member Avatar for hericles
    hericles

    Began Watching Error in Insert SQL statement for VB.net

    Hi all, i encounter an syntax error "Syntax Error in Insert Into" when i try to run this code... anyone can assist? Thanks! Dim sConnectionString As String sConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;" …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Error in Insert SQL statement for VB.net

    I think it may be because FROM and TO are reserved words. You need to delimit them as you have Sheet1$. Or rename your columns because that'll catch you out …
  • Member Avatar for hericles
    hericles

    Began Watching Validation for wizard Form

    Hi I was working on wizard registration form i collected the code from web and i gave required in the input tag. But its not working. Can any one please …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Validation for wizard Form

    Firstly, an indication what the problem is beyond "it's not working" would help a lot. As would actual code. You've just given us HTML which isn't a lot of help.
  • Member Avatar for hericles
    hericles

    Began Watching incorrect message windows 8

    When booting into Windows 8 I repeatedly receive a message on the home screen that I have files waiting to be burned. I do NOT. Going to my burning drive …
  • Member Avatar for hericles
    hericles

    Replied To a Post in incorrect message windows 8

    [This article should help you](http://www.sevenforums.com/tutorials/654-you-have-files-waiting-burned-disc-stop-message.html)
  • Member Avatar for hericles
    hericles

    Began Watching Transfer Data from Access Database to SQL Server 2008 R2 USING VB.NET CODE

    I NEED TO WRITE A CODE IN VB.NET , THAT LET ME EXPORT DATA FROM ACCESS DATABASE ( THE TABLE ATTACHED AS IMAGE ) AND IMPORT IT INTO SQL SERVER …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Transfer Data from Access Database to SQL Server 2008 R2 USING VB.NET CODE

    The easiest way would be to use the id column as a unique key in the sql server. Then if it already exists the insert would fail. You'd just need …
  • Member Avatar for hericles
    hericles

    Replied To a Post in SELECT PHP

    OK, so you don't have a problem then? Is there anything going wrong or did you just post a code snippet? Oh wait, I see. Your <option> isn't displaying correctly …
  • Member Avatar for hericles
    hericles

    Began Watching Surrogate primary key

    1. What exactly is a surrogate primary key? 2. Is a surrogate primary key just a made up attribute inserted into a table by the database administrator? All I know …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Surrogate primary key

    You pretty much have it correct. If no data lends itself to being a natural key (i.e. nothing int the data is unique across rows) a surrogate key needs to …
  • Member Avatar for hericles
    hericles

    Began Watching best programming language for game programming?

    i want to know which is the best language for the game programming?
  • Member Avatar for hericles
    hericles

    Replied To a Post in best programming language for game programming?

    Matter of opinion about which is the 'best' I guess but I believe the most used language for game programming is C++.
  • Member Avatar for hericles
    hericles

    Began Watching SELECT PHP

    I am trying to put rows from my database to a select this is the code, <select name='network' id='network'> <option selected>None</option> <?php $query = mysql_query("SELECT * FROM `countries` "); while($row=mysql_fetch_array($query)) …
  • Member Avatar for hericles
    hericles

    Replied To a Post in SELECT PHP

    Where are you specifying your connection information? Is this all of the relevant code?
  • Member Avatar for hericles
    hericles

    Began Watching windows live mail not starting

    my windows live mail is not starting. it gives the error message wlm could not be started it may not be installed correctly. make sure disk not full and you …
  • Member Avatar for hericles
    hericles

    Replied To a Post in windows live mail not starting

    The windows Live Mail assistant may be off. Type services.msc in search box, and run as Administrator. Then find Windows LIve ID Sign-in Assistant and make sure it is running, …
  • Member Avatar for hericles
    hericles

    Replied To a Post in HTML/CSS menu :hover/:active help needed

    see link at bottom of original post
  • Member Avatar for hericles
    hericles

    Began Watching Fancybox problem

    ` <script type="text/javascript" src="js/jquery.min.js"></script> <link rel="stylesheet" href="js/jquery.fancybox-1.3.4/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" /> <script type="text/javascript" src="js/jquery.fancybox-1.3.4/fancybox/jquery.fancybox-1.3.4.pack.js"></script> <script language="javascript"> $(document).ready(function() { /* Apply fancybox to multiple items */ $("a.grouped_elements").attr('rel', 'gallery').fancybox(); $("a#inline").fancybox({ 'hideOnContentClick': true }); …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Fancybox problem

    What does the developer tools in your browser say? Any error coming up as a clue? Although, on closer inspection, I can see this: $("a#inline").fancybox({ 'hideOnContentClick': true }); but no …
  • Member Avatar for hericles
    hericles

    Began Watching Login Form configuration

    Hy guys, . Please assist in advicing whch toolbox conncetion controls to add in my form. I want to connect to access 2007 using vb.net 2005 and im struggling. I …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Login Form configuration

    Post up your code and we'll have a look. Its hard to fix someone's problem when you can't see what could be causing it...
  • Member Avatar for hericles
    hericles

    Began Watching HTML/CSS menu :hover/:active help needed

    Hello all! I have the following code for a drop down menu, I need some help now to make the hover link to have an arrow bellow the blue box, …
  • Member Avatar for hericles
    hericles

    Replied To a Post in HTML/CSS menu :hover/:active help needed

    Not interested in just using a background image (one including the arrow) for the hovered element? If you want to keep it as CSS3 I've seen attempts to do this …
  • Member Avatar for hericles
    hericles

    Began Watching How to get the integer from distinct count ?

    this is my code $totalDates = "SELECT COUNT( DISTINCT date ) FROM table_name"; $result = mysqli_query($connection, $totalDates); $totalDates = mysqli_fetch_array($totalDates, MYSQLI_NUM); echo "there are total $totalDates Distinct Rows"; i want …
  • Member Avatar for hericles
    hericles

    Replied To a Post in How to get the integer from distinct count ?

    The issue isn't with the SQL which is why the query works fine. The error clearly states you are using mysql_fetch_array wrong. You want to be passing in the result …
  • Member Avatar for hericles
    hericles

    Began Watching automatic form validation without submitting

    I am trying to change my ways and wonder if someone could help me find my way... LOL Honestly. I've always used forms in my scripts that a visitor had …
  • Member Avatar for hericles
    hericles

    Replied To a Post in automatic form validation without submitting

    If you simply want to validate the input, make sure values are entered in required fields, that emails are in email format, etc you can just use jQuery to monitor …

The End.