• Member Avatar for hericles
    hericles

    Replied To a Post in Default values in DetailView VS2015

    Maybe some code to view? It's a bit tough to give advice otherwise.
  • Member Avatar for hericles
    hericles

    Replied To a Post in what am i missing here

    Hi divinity, You read my reply but I don't think you understood it. The issue wasn't that the variables were zero to begin with. It was that you never changed …
  • Member Avatar for hericles
    hericles

    Began Watching Add if a user already exist on a table

    Please anyone can help me. I need to add an if statement to verify if a user already exists on a table. Can someone help me on this. Here is …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Add if a user already exist on a table

    If the username is unique (which it should be) you can do a SELECT first with the username as the parameter. If the result contains a row the user already …
  • Member Avatar for hericles
    hericles

    Began Watching mySQL Select Query

    I'm having some real trouble running some basic queries that I should be able to run easily. I have a table called settings. When I query `SELECT * FROM settings` …
  • Member Avatar for hericles
    hericles

    Replied To a Post in mySQL Select Query

    Key is a reserved word in MySQL. You need to use back ticks to escape it rather than quotes. Backticks are the key to the left of the 1 on …
  • Member Avatar for hericles
    hericles

    Began Watching How to Find Minimum And Maximum Value From Random Set Of Numbers?

    So.. I have This program that generates Random Numbers with the User input. Now I Don't know how to find the Maximum and Minimum Value from that Random Numbers. This …
  • Member Avatar for hericles
    hericles

    Replied To a Post in How to Find Minimum And Maximum Value From Random Set Of Numbers?

    I'd say your problem is here: int randomInteger = random.nextInt(); randomInteger [i] = MaxInteger; You declare randomInteger as an int then in the line treat it as an array. In …
  • Member Avatar for hericles
    hericles

    Began Watching what am i missing here

    hi i am practicing this program here and i am outputting zero. trying my best where is the error here is the code double fed_tax = 0, state_tax = 0, …
  • Member Avatar for hericles
    hericles

    Replied To a Post in what am i missing here

    You create a range of variables: `double fed_tax = 0, state_tax = 0, hrswrk, payrate=0, gross_salary = 0; double hrlyrate=0;` But never change their values. For example, you get the …
  • Member Avatar for hericles
    hericles

    Began Watching SQl with vb.net

    hiii frnds i am work in vb.net windows application now in sql empid field is Unique (primary key) that how can i impliment and handle Empid manually
  • Member Avatar for hericles
    hericles

    Replied To a Post in SQl with vb.net

    What do you mean by handle it manually? One of the benefits of an auto-incrementing ID column is that you don't have to look after it yourself, you can let …
  • Member Avatar for hericles
    hericles

    Began Watching last node in linked list not showing

    hello, i am new to link list in java, the output() method isn't displaying the last value entered by the user, can i get some help? also you will see …
  • Member Avatar for hericles
    hericles

    Replied To a Post in last node in linked list not showing

    It's skipping the last item because, for the last item in the list, top.next == null. Therefore the final print loop isn't actioned. You'll need another way of determining when …
  • Member Avatar for hericles
    hericles

    Began Watching Realtime Camera Preview For change the face color

    I want to develope app for android which open realtime camera from application and in that i can change different color or shades of lips(Mouth) ...i am stuck .. i …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Realtime Camera Preview For change the face color

    How much do you know about facial recognition software and algorithms needed to accurately detect parts of the face? To be honest this isn't an easy project and without skills …
  • Member Avatar for hericles
    hericles

    Began Watching Integration Services

    Hello to all! I am using Sql server express 2008. Now I want to use Integtation services such as creating and executing packages. But I could not find any interface …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Integration Services

    You need at least the standard edition to have integration services. It isn't included in the express version.
  • Member Avatar for hericles
    hericles

    Replied To a Post in query updating same value for all rows

    From what you said in your second comment my response still stands. You will need to target each row individually to prevent all user's getting the same password. You say …
  • Member Avatar for hericles
    hericles

    Began Watching Vb.net Window

    hii frnds Need Help i am work on vb.net windows application now in my application there are on update button but simply if u update the record then first delete …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Vb.net Window

    Why are you deleting and inserting just to do an update? Simply update, that's what it is there for. Without knowing your database schema I would think that by deleting …
  • Member Avatar for hericles
    hericles

    Began Watching query updating same value for all rows

    Hi all I have a system that im working on the the code works fine it, but theres a part thats giving me issues below is the code that loops …
  • Member Avatar for hericles
    hericles

    Replied To a Post in query updating same value for all rows

    Each of the updates is working correctly it's that the third one runs last and is therefore the one you see. You're problem is this: `echo $k = "UPDATE details …
  • Member Avatar for hericles
    hericles

    Began Watching Make it so page automatically loads up to the bottom

    I am trying to get my website to load up at the bottom of the page... Maybe this can be done with css, or javascript... I dont know.
  • Member Avatar for hericles
    hericles

    Replied To a Post in Make it so page automatically loads up to the bottom

    You can use something similar to this to determine when you're close to the bottom: if ( ($(document).height() - $(window).height()) - $(window).scrollTop() < 300 ){ //code } You can alter …
  • Member Avatar for hericles
    hericles

    Began Watching ASP.Net run time

    I am going through .net book. I happen to read that once we are storing the web form in asp.net ,it automatically shows local host path in save directory. But …
  • Member Avatar for hericles
    hericles

    Replied To a Post in ASP.Net run time

    HttpServerUtility.MapPath will return a string which is the physical path to the application, which will be the actual location of your web app (e.g. C:\inetpub\www\website\ for example). You can append …
  • Member Avatar for hericles
    hericles

    Replied To a Post in findWithinHorizon method to C#

    That should work, assuming you wanted the second parameter to be the start point at which the pattern is matched. Of course, in your post you have an extra ')' …
  • Member Avatar for hericles
    hericles

    Replied To a Post in What is good paypal database schema

    Then you just answered your question didn't you?
  • Member Avatar for hericles
    hericles

    Began Watching what is wrong with this

    hi I have been trying to build this array program but the result is hurrendous dont know where i have gone. here is the codes. it is public static int …
  • Member Avatar for hericles
    hericles

    Replied To a Post in what is wrong with this

    I would guess that you want one loop to be inside the other: for(i=0; i<=5; i++) { System.out.println("factors of "+num[i]); System.out.println(""); for(n=1; n<=num[i]; n++) the problems is here also { …
  • Member Avatar for hericles
    hericles

    Began Watching form submission it overwrites previous submission instead of saving both

    hi i have a events script for users if the user submits a event then the event shows up fine but if they add another event it over rights the …
  • Member Avatar for hericles
    hericles

    Replied To a Post in form submission it overwrites previous submission instead of saving both

    Huh, I'd completely forgotten about INSERT INTO ... SET :) The code segment you've shown us should work fine (I can't see any errors anyway) so if you mean that …
  • Member Avatar for hericles
    hericles

    Began Watching What is good paypal database schema

    I'm working on shopping mobile application. The application is similar to ebay it have customer and seller. When user create account they can either create account as seller or customer. …
  • Member Avatar for hericles
    hericles

    Replied To a Post in What is good paypal database schema

    I'm not an expert in the requirements of recording financial transactions but I wonder why two tables would be needed, they'd each mostly be a duplication of the other. One …
  • Member Avatar for hericles
    hericles

    Began Watching unable to connect to mysql database using pony

    this is the response i get (1045, "Access denied for user 'point3hu_leo'@'197.253.66.85' (using password: YES)") Press any key to continue . . . from pony.orm import * db = Database() …
  • Member Avatar for hericles
    hericles

    Replied To a Post in unable to connect to mysql database using pony

    Some things that can be wrong 1) That user doesn't exist 2) the username is wrong 3) the password is wrong 4) User exists but doesn't have access to that …
  • Member Avatar for hericles
    hericles

    Began Watching Help with Javascript table using LOOP!

    I need to create a table 3x3, using two loops. Inside each cell, my name has to appear. I am unsure how to do this! Please help!
  • Member Avatar for hericles
    hericles

    Replied To a Post in Help with Javascript table using LOOP!

    Without giving away too much, you need the two loops, one for the rows and one for the columns. You need to figure out how to organise the loops so …
  • Member Avatar for hericles
    hericles

    Began Watching findWithinHorizon method to C#

    I need to convert the findWithinHorizon method to C#, is there anything equivalent to this?
  • Member Avatar for hericles
    hericles

    Replied To a Post in findWithinHorizon method to C#

    Do you mean something like the Regex.Match() method? You intend to search a string for a pattern correct?
  • Member Avatar for hericles
    hericles

    Began Watching open two different tabs on button action

    I have three pages page 1 :through a submit button in page 1 ... I want to be redirected in page2 in new tab and page3 in the same tab. …
  • Member Avatar for hericles
    hericles

    Replied To a Post in open two different tabs on button action

    Could you use the response.redirect to open the page in the current tab and from there, using javascript window.open, make opening the new tab one of the first things your …
  • Member Avatar for hericles
    hericles

    Began Watching php mysql foreach query 2 tables at once

    please i need to query 2 tables at once and display the content in table. here is the code: <?php include 'database.php'; $pdo = Database::connect(); $sql = 'SELECT producs.*,validation_superviseur.* FROM …
  • Member Avatar for hericles
    hericles

    Replied To a Post in php mysql foreach query 2 tables at once

    And what problem are you having? Is it the typo in 'select producs.' in your SQL statement? Or something else? Seeing as your only using a few of the selected …
  • Member Avatar for hericles
    hericles

    Began Watching Update database with ajax, can't get radio or check boxes working on Safari

    I was trying to use some code I found on here, but I can't get it to work.. Original question: https://www.daniweb.com/programming/web-development/threads/374722/update-database-with-ajax-and-with-different-input-names The code mostly works great for me, so thanks …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Update database with ajax, can't get radio or check boxes working on Safari

    As with a lot of people that post on coding forums, you need to help us to help you. The statement "the checkboxes don't work" is hopelessly vague. You would …
  • Member Avatar for hericles
    hericles

    Began Watching images and links don`t stay inside frame

    I developed a website which i was okay with. Recently I updated it with some pictures and links which has broken its responsivness. On bigger screen it looks fine but …
  • Member Avatar for hericles
    hericles

    Replied To a Post in images and links don`t stay inside frame

    You haven't included the CSS style rules for the classes used or any media queries that you are set up. Without those we're flying blind. You do have media queries …
  • Member Avatar for hericles
    hericles

    Began Watching Saving a user - help

    Please help....i want to save a user to my database..using wampserver... <form method="POST" action=""> <center><br> <H1>USER REGISTRATION</H1> <table> <tr> <td>User Id</td> <td><input type="text" name="userId"></td> </tr> <tr> <td>Lastname</td> <td><input type="text" name="lastname"></td> …

The End.