• Member Avatar for hericles
    hericles

    Replied To a Post in jQuery manipulating div problem

    The tutorial div appears when the page first loads. As you have no URL in your HREF all that happens on clicking a link is that the page reloads, showing …
  • Member Avatar for hericles
    hericles

    Began Watching limit excel cell value to 11 digit only

    hi, Please help how to solve my problem about how to limit 11 digit number inside excel cell. i want to enter values like mobile number starting 0########## and deletes …
  • Member Avatar for hericles
    hericles

    Replied To a Post in limit excel cell value to 11 digit only

    =LEFT(text, length) should be what you are after
  • Member Avatar for hericles
    hericles

    Began Watching E-commerce Website

    While coding for an e-commerce website. I received warning about this: Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\shopping\store\index.php on line 194 This is my code: …
  • Member Avatar for hericles
    hericles

    Replied To a Post in E-commerce Website

    Is this the correct section of code? Your error says line 194 and we can't see that here. The mysql_fetch_array calls you have here look OK, you're passing in a …
  • Member Avatar for hericles
    hericles

    Began Watching Invalid value for key 'attachdbfilename'

    After publishing my project on local IIS it worked fine but on the web its keep poping the error [ArgumentException: Invalid value for key 'attachdbfilename'.] many forum i search said …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Invalid value for key 'attachdbfilename'

    Where does attachdbfilename occur in your code? Is it the name of a key that used to appear in your config? If you have just removed it I qould expect …
  • Member Avatar for hericles
    hericles

    Began Watching Load every word on label on array

    Can someone help me solve this problem: 1)How can i insert every word of label.text to array 2)How can i check if the word that i type on textbox is …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Load every word on label on array

    To get an array of the text: `string[] s = label.Text.Split(' ');` and to check: `if(s.Contains(checkString)) {}`
  • Member Avatar for hericles
    hericles

    Began Watching How to upload Multiple files into the database

    <form action = "uploadFile.php" method= "POST" enctype = "multipart/form-data"> <input type = "file" name = "file[]"><br><br> <input type = "file" name = "file[]"><br><br> <input type = "submit" value = "Submit"> …
  • Member Avatar for hericles
    hericles

    Replied To a Post in How to upload Multiple files into the database

    The code you have there will upload 2 files. The resultng array %_FILES['files'] that is posted will contain them both. What exactly are you having trouble with? Something to remember …
  • Member Avatar for hericles
    hericles

    Began Watching Disable Login after failed attempts

    I'm trying to ban a user from logging in to a site after 3 failed attempts. Code: <?php require 'konek/dbcon.php'; if (isset($_POST['login'])) { session_start(); //$link = mysqli_connect('localhost', 'root', '','abra') or …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Disable Login after failed attempts

    To make this work properly you'd have to include the lock-out function in server code otherwise the 10 minute stand down only applies to the device her was on at …
  • Member Avatar for hericles
    hericles

    Began Watching umm how do i get the users to upload the photos.and use that photos as url

    okay guys here is a thing i am new in asp.net and just love toying with technology and trying to learn asp.net through creating persnal projects. i am trying to …
  • Member Avatar for hericles
    hericles

    Replied To a Post in umm how do i get the users to upload the photos.and use that photos as url

    The repeater control is the right way to go. The only thing I would suggest is to think about how you want the image link to work. Personally, I would …
  • Member Avatar for hericles
    hericles

    Began Watching Page declaration showing up and controls not loading?

    I have a site that I can't seem to figure out. I'm extremely new to asp.net/vb etc...I do C# forms but nothing with web dev. Anyway, my problem is my …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Page declaration showing up and controls not loading?

    Are you saying that you can see `<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> ` in the browser window after you have loaded the page? If yes, your code isn't …
  • Member Avatar for hericles
    hericles

    Stopped 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

    Began Watching GIMP Question

    I am drawing image in GIMP and was wondering if the pixels can be moved without moving the whole layer, I just want to move a set of pixels lower …
  • Member Avatar for hericles
    hericles

    Replied To a Post in GIMP Question

    You can select the pixels in question, cut/copy them and then move them around as needed.
  • Member Avatar for hericles
    hericles

    Began Watching Transfer Data From Windows Form To Website

    Hi I am trying to transfer data from windows Form Application to Website Controls. i.e..From windows Form Text Box to Website Textbox..It is esily done By Using imacros application but …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Transfer Data From Windows Form To Website

    I'm not aware of the exact requirements of your project but is saving the data to a database and then loading it into the page not an option? Why do …
  • Member Avatar for hericles
    hericles

    Began Watching Intergers and illegal start of expression

    public class Receipt public static void main (String[] args) { // Calculate total owed, assuming 8% tax/15% tip System.out.println("Subtotal:"); System.out.println("int.Subtotal:=108"); System.out.println("Mystring = Mystring.Replace(38+40+30,Subtotal)"); System.out.println("Tax and Tip:"); System.out.println((("Subtotal")*.08)+(("Subtotal")*.15));) System.out.println("Total:"); System.out.println("Subtotal"+("Subtotal")*.08 +("Subtotal")*.15); …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Intergers and illegal start of expression

    It looks to me like your problem is with line 9: `System.out.println((("Subtotal")*.08)+(("Subtotal")*.15));)` You have an extra ) at the end.
  • Member Avatar for hericles
    hericles

    Began Watching Create a program that will produce output below using LOOP Structure

    Hello! Badly need help. I need to do a program that will produce odd & even numbers using loop structure Sample output: Enter a number: 5 This number is an …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Create a program that will produce output below using LOOP Structure

    This is the standard reply we give users with your type of question, don't take it personally. We don't just do your project for you. By all means, we will …
  • Member Avatar for hericles
    hericles

    Began Watching Can a developer develop a full enhance web application

    Please i am a student and a developer i have been developing for the past 3years now. but i am phobic to completing a web application, i dont have a …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Can a developer develop a full enhance web application

    I'm not sure I get what you're asking but any developer should be able to finish any project given time. The limiting factor is skillset. A large project can be …
  • Member Avatar for hericles
    hericles

    Began Watching How to change html dom element's background color on click?

    I have a page with ul generated by handlebarsJS. It's like: <ul> <li><a href=#>asd</a></li> </ul> but with more li's. I want to change the background color of a li element …
  • Member Avatar for hericles
    hericles

    Replied To a Post in How to change html dom element's background color on click?

    If you only have the two colours, the easiest thing to do is change the background to the default colour for all LI's and then adjust the colour for the …
  • Member Avatar for hericles
    hericles

    Began Watching Dynamic Slideshow problem

    I want to display 3 images at a time in a slideshow(testimonial)..but remaing images also getting display's at the bottom of slideshow..i have attached image please chaeck.... <div class="row"> <div …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Dynamic Slideshow problem

    Is your query returning more than 3 rows? That seems like the most obvious cause of the problem.
  • Member Avatar for hericles
    hericles

    Began Watching Computerised system for a pre-primary school

    I have to design a computerized based system for a pre-primary school on Access. What are the advantages of having a computer based system rather than a manual one? Could …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Computerised system for a pre-primary school

    Without knowing the goals the system is designed to achieve answering your question is impossible. Quote: "What are the advantages of having a computer based system rather than a manual …
  • Member Avatar for hericles
    hericles

    Replied To a Post in vb .net application

    What is the exact text of the error? If you what you have described in correct there everything does indeed look like it should be working.
  • Member Avatar for hericles
    hericles

    Began Watching Planning to make MMO in JS

    Hey guys! this is my first time here. i was planning to learn JS to make some Games especially MMORPG Web based games. I wasn't planning to make MMORPG right …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Planning to make MMO in JS

    Look into Angular.js, its pretty powerful and you can build some large scale apps with it.
  • Member Avatar for hericles
    hericles

    Stopped Watching Company Ended 6-Month Contract Early

    Hi. I was working a 6-month contract as a NOC Specialist, and the company decided to end just today. I am 3 months into the contract, and there was no …
  • Member Avatar for hericles
    hericles

    Began Watching When i install window form application another machine database not connect

    When i install window form application another machine database not connect ERROR :- Unhandle Exception has occurred in your application. A network related or instance- specific error occurred while establishing …
  • Member Avatar for hericles
    hericles

    Replied To a Post in When i install window form application another machine database not connect

    Is your database part of the app or does the app connect to a remote db? Is the install location the same on the second machine as the first and …
  • Member Avatar for hericles
    hericles

    Replied To a Post in vb .net application

    OK, you need to check Application.StartPath to make sure it is correct and then check the db file exists at the end location.
  • Member Avatar for hericles
    hericles

    Began Watching splitting line into words, storing array into arraylist

    Hello, I've been trying to read txt from a file, and breaking each line into words and storing them in Array. Example. txt file C001 John Smith 999999 C002 Mary …
  • Member Avatar for hericles
    hericles

    Replied To a Post in splitting line into words, storing array into arraylist

    The most obvious problem is that you are breaking on the space between first and last name as well. But when you create your client object you want to pass …
  • Member Avatar for hericles
    hericles

    Began Watching C# newbie

    Im not a programmer but I need to do it now. Our thesis is about creating a system for a specific company. I am just a systems analyst and I …
  • Member Avatar for hericles
    hericles

    Replied To a Post in C# newbie

    IT ebooks, can't go wrong: [Click Here](http://it-ebooks-search.info/search?q=c+sharp&type=google)
  • Member Avatar for hericles
    hericles

    Began Watching biometric voting system

    hi. can someone give me a specific title for biometric voting system.. please, i badly need it :(
  • Member Avatar for hericles
    hericles

    Replied To a Post in biometric voting system

    Are you looking for the name of a biometric system that already exists or do you want to name one of your own? If you want to know what is …
  • Member Avatar for hericles
    hericles

    Began Watching Programmatically creating SQL database

    I'll prelude this with I am a novice coder at best and this is mostly a hobby that I would like to do professionally one day, but that day may …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Programmatically creating SQL database

    Is the sql server configured for remote access? If it is a named instance you need to have sql server browser running to be able to locate the name instance …
  • Member Avatar for hericles
    hericles

    Began Watching vb .net application

    hello sir,good morning am creating one pos software ,i have done all my designing and coding its working fine in my system ,i kept my db in inside debug-->bin section …

The End.