-
Replied To a Post in find the matching image from the list
Facial recogition is a reasonably complex and involved solution. I don't think you'll get a response on a forum that would really do it justice. There are a lot of … -
Began Watching Error converting data type varchar to numeric.
Hi i have issue in stored procedure converting data type Destination table dbo.Z_tbl_CirculationCopy_TEMP has numeric data type But source table Z_tbl_Import_temp have VarChar Type If I export data from source, … -
Replied To a Post in Error converting data type varchar to numeric.
Try using the CAST or CONVERT functions of sql: CAST(column_name AS INT) Of course, your VarChar column needs to be all numbers for it to work. -
Began Watching Div layout to replace table usage
I have googling a lot about this debate to move from table to div. What are your advices here to move or not. I have below my codes building layout … -
Replied To a Post in Div layout to replace table usage
Which CSS template are you using to do this? I note you have a classes such 'div-fluid' and row-fluid'. Those would imply you are using a fluid layout which would … -
Began Watching Show Menu
Hy i have a part of my html page that is like this <div class="menu-wrapper"> <ul class="menu"> <li><a class="show-2" href="#">1</a></li> <li><a class="" href="#">2</a></li> <li><a class="show-4" href="#" onclick="templatemo_map();">3</a></li> </ul> <!-- /.menu … -
Replied To a Post in Show Menu
To remove the "fa fa-bars" class you can use this: $.('.menu').removeClass('fa'); And to add a class use .addClass(). The toggle should work as it is. Is it not working currently? -
Began Watching data base site seo
how to promote databse realet website on the google before now i never promote any data base site. so its new experience to me so need help what the criteria … -
Replied To a Post in data base site seo
Not sure what you mean by a database site. Are you referring to a database driven website where all of the content comes from a database? these cases are no … -
Began Watching Brackets
I have been coding in c# on and off since I started my first year of the degree in IT two years ago. Of course you use the (), [] … -
Replied To a Post in Brackets
It comes down to how the compiler reads and interprets your code. By defining different symbols for different things the compiler can infere what action you are trying to do. … -
Began Watching About no follow links
Hello, I would like to know that does no follow high pr link really worth in seo or not.. -
Replied To a Post in About no follow links
No follow stops net crawlers from following links away from your site to the linked site. By using no-follow you can prevent your page rank transferring to the linked page … -
Replied To a Post in javascript fuel volume calculator
Sum the values held in distance, seeng as that contains the values entered, and divide it by the number of elements. -
Began Watching javascript fuel volume calculator
Hi, i need help creating a fuel volume calculator to estimate the gallons of fuel required to travel 5 distances so far the 5 distances in miles the user enters … -
Replied To a Post in javascript fuel volume calculator
An average is just the total sum of the elements divided by the number of elements. increment your sum variable by the entered value inside the loop and then, once … -
Began Watching Including pictures in email
Hi, I am struglling to send an image in my email. In the program I am using the shell command sendmail in usr/lib/. I had set the content type to … -
Replied To a Post in Including pictures in email
Have you debugged it from the email end? Is the link correct and if you copy and paste it into the browser do you get the image back? -
Began Watching Join five tables
I have five tables as listed below. Question: is it possible to join all five tables and output the result as show below? <table> <tr> <th>Subject</th> <th>Last update (date from … -
Replied To a Post in Join five tables
As long as each table has one column which refers it to another table, through which a linkage can be made, you can join them all. It doesn't need to … -
Began Watching Web.config
How to create web.config get root domain, don't have folder? -
Replied To a Post in Web.config
Could you explain your problem more clearly? What is it you are trying to do and what is stopping you? -
Replied To a Post in php 5 never heard of mysql_connect()
OK, create a script with <?php phpinfo(); ?> and run it. Look for MySql in the resulting tables. If it isn't there then something is missing. Maybe the MySql driver? -
Replied To a Post in Get data into combobox from database
Thats coming from your SQL statement. Which table are you trying to select from because it looks like you are referring to two. -
Began Watching user not displaying via session variable
i am new to the PHP and i building a website which is mostly copied from diff sources and i want the user who had logged in to be displayed … -
Replied To a Post in user not displaying via session variable
You need session_start() at the top of all scripts that intend to use the session state, whether to read from or set it. Adding session_start() to your checklogin.php should fix … -
Began Watching What technique did you use to learn to program?
I started programming 3 2 years ago when I started the certificate in IT, I am now on my 3rd and final year of the bachelors degree in IT. The … -
Replied To a Post in What technique did you use to learn to program?
Way back I self taught myself some Java as a start point (but never got very good at all). My first university course used Delphi. Then I taught myself VB.Net, … -
Began Watching Get data into combobox from database
I have not completed the code ...but why am i getting error inside while loop saying cannot convert string to int...when i am not converting string to int namespace book … -
Replied To a Post in Get data into combobox from database
It is because getString() accepts an integer, not a string. You pass in the zero-based reference for the column you want. Instead of passing in "CarName" pass in the position … -
Began Watching php 5 never heard of mysql_connect()
whenever i use mysql_connect() It gives Fatal errror of using unidentfied function i'm using mysql version 4 on windows 7, what to do? it looks like php never heard of … -
Replied To a Post in php 5 never heard of mysql_connect()
Have you got the correct modules enabled in your php.ini file? -
Began Watching How to begin your career in webpage designing
Dear members, I thank you for taking time to view this discussion, which would focuss on how to build ones career in webpage designing, Kindly guide me from ground zero … -
Replied To a Post in How to begin your career in webpage designing
This youtube link popped up in my 'what to watch' feed the other day and maybe of interest to you. It pretty much answers your question (I think, I didn't … -
Began Watching How to secure connections over the internet?
I'm sorry if this is the wrong place to put this, but since I normally code in C#, and my potential solution would involve using C# I figured this would … -
Replied To a Post in How to secure connections over the internet?
My take is that, for knowledgeable web users, the https and the lack of warnings is a sign of trust. Your self encrypton method, while it would be valid if … -
Began Watching Database and form
using System.Text; using System.Windows.Forms; using System.Data.SqlClient; namespace book { public partial class login : Form { SqlConnection conn; SqlCommand cmd; SqlDataReader reader; public login() { InitializeComponent(); } private void button2_Click(object … -
Replied To a Post in Database and form
That would indicate that your database connection and query are fine, its just returning and empty result set i.e. that user name and password combination are found in the database. … -
Began Watching How to use a plugin on my webpage
How can i allow a user to view a font on my webpage which is not available on his computer? I want to learn how to use a plugin for … -
Replied To a Post in How to use a plugin on my webpage
You can use google web fonts for that. You download the font via an href to the google font location. Here is Google's [getting started guide](https://developers.google.com/fonts/docs/getting_started) -
Began Watching Call set time out from back code
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="cookie_test.aspx.cs" Inherits="cookie_test" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <link href="css/bootstrap.min.css" rel="stylesheet" /> <link href="css/bootstrap-theme.min.css" rel="stylesheet" /> <link href="css/layout.css" rel="stylesheet" /> <link href="css/responsive.css" rel="stylesheet" /> … -
Replied To a Post in Call set time out from back code
Your settimeout is firing everytime because it isn't wrapped in a function that needs to be called. It's just sitting there waiting to fire when that script block is reached. … -
Began Watching Changing A Select Statement
Hi guys. I wanted to create a quiz for my website. I have found some code from a website called (getcode.org) (prev world of webcraft). The quiz now works as … -
Replied To a Post in Changing A Select Statement
You can do a couple of things. Frstly, you can generate the random number in your code and use it in your query. Get the MAX(id) from the table as … -
Began Watching While loop to write string
I have been doing some exercises out of the Head First C# book and have just done this exercise where you write a complete sentence using a while loop. The … -
Replied To a Post in While loop to write string
It should be fairly understandable if you buld the string yourself, keeping track of x at the same time but I'll try to give a coherent explanation. On the first … -
Began Watching vbnet mysql datagrid duplicate data
Hello everybody.I am amking a programm in vb net and mysql. My question is the following: i have one main form which it loads ,it loads all the database data … -
Replied To a Post in vbnet mysql datagrid duplicate data
Post some code and then we can really help. Any the rows repeated as a group? I.e. you have rows 1,2,3,4,1,2,3,4? Because that is a clear indicator your loading code … -
Began Watching Only one copy of static member exists.
I was learning about the static class and static method.Then i came across the following line: Only one copy of static member exists regardless of any no of instance of … -
Replied To a Post in Only one copy of static member exists.
Say you have a static variable, counter, in your class and a method that incremented and displayed counter. You then create two instances of the class, X and Y. Calling …
The End.