-
Began Watching The Importance of Perseverance
I'm recording this time and date for posterity - January 18, 2015 at 5:03 p.m. (Pacific Time). What is the significance of this moment in history? It's the exact time … -
Replied To a Post in The Importance of Perseverance
And I say kudos to your achievement. Persistence is the key indeed. But, and I don't mean to belittle what you've done, true knowledge comes when you know WHY moving … -
Replied To a Post in can someone help with this error
At line 28 you have a closing } that doesn't look like it needs to be there. Same for line 39. You have two closing braces there. The second one … -
Began Watching Publishing Application Visual Studio
Hello guys, I create a software in vb.net to consulte my database (mysql) with table adapter and connections string, normal and simple application. Now I need to make a publishing, … -
Replied To a Post in Publishing Application Visual Studio
If your server IP is static and accessible to the outside world the connection string should work if it is set up correctly. You will need to include the port … -
Replied To a Post in can someone help with this error
There must be more code. Unless your class only contains that one line... If you are unwilling to post up the rest of the code there is very little we … -
Began Watching can someone help with this error
hi anyone I am doing a car insurance program in java and i need to understand this error. the program goes like this. it depend on the driver's age and … -
Replied To a Post in can someone help with this error
I think there must be something else wrong beyond that small snippet. Can you post up the whole if statement? -
Began Watching How would you go about a guidance system?
Hello. I'm a software engineer at NASA. I was wondering how some programmers would go about making a guidance system. I have a design but I want to compare it … -
Replied To a Post in How would you go about a guidance system?
Then ask a colleague at ... <cough> NASA. -
Began Watching facebook api exception #100-invalid parameter in c#
i developing a poster software, when i'm trying to post a link it give the following exception facebook api exception #100-invalid here's my code public static bool post(string accesstoken,string status,string … -
Replied To a Post in facebook api exception #100-invalid parameter in c#
What is the link you are trying to pass? I haven't used the FB SDK for awhile but I think I remember the link had to be acessible i.e. not … -
Began Watching update mysql when clicking on a image
Am trying to work out how to update my database for the image name I have selected with out the need of pressing any buttons just the image it self. … -
Replied To a Post in update mysql when clicking on a image
If you want quick, seamless approach that the user is completely unaware of, use jQuery and put a onclick on the image. When it is clicked make an AJAX call … -
Replied To a Post in Run a variable in a stored Procedure
I should add that once you have your stored procedure written correctly, you call it and add the required parameters to the command object as you normally would to pass … -
Began Watching Run a variable in a stored Procedure
I am trying to look on the web for a way to create a stored procedure that I can run and then put in multile values and this is the … -
Replied To a Post in Run a variable in a stored Procedure
This tutorial should help you: [MySQL store procedures with parameters](http://www.mysqltutorial.org/stored-procedures-parameters.aspx) -
Replied To a Post in begineer in need of help
I don't know anything about the set up of abyss but if you look in the root folder of the abyss server there should be a log folder which will … -
Began Watching asp.net username of user logged in
Hi, trying to get the username of the user logged into a computer but it doesn't appear to be working. I was using `Label1.Text = User.Identity.Name;` to check if it … -
Replied To a Post in asp.net username of user logged in
Are you storing the logged in user's user name anywhere? In a session variable for instance? Withoutknowing what you are doing to persist the user name after a successful login … -
Began Watching document.getElementById doesn't work on Apple Mac Pro
some month ago i work to make a interactive web with javascript but when i copy the project to my patner which use Apple Mac Pro then the interactive is … -
Replied To a Post in document.getElementById doesn't work on Apple Mac Pro
Do you know what browser they were using? I highly doubt it is the operating system that doesn't handle the javascript correctly. I'm going to guess they were using Safari. … -
Began Watching Dynamic element
i used text avatar jquery for dashboard profile image [avatar JS](http://judelicio.us/initial.js/). when Jquery append <img /> tag dynamicly not getting profile avatar.below is sample script <img data-name="Steve" id='SteveID' class="profile"/> <script> … -
Replied To a Post in Dynamic element
That code will append the second image inside the first. I doubt that is really what you are trying to achieve. If you look at the page source you'll see … -
Began Watching Question
Explain any five input devices and five output devices. -
Replied To a Post in Question
Sounds like homework. Just think of things you can use to get data into a computer and things you can use to get data out. Hint: a keyboard and a … -
Began Watching begineer in need of help
I'm trying to setup a database and PHP and i did the following: I installed PHP and abyss server. i created a php file in the server as shown in … -
Replied To a Post in begineer in need of help
After you've started it,if it still doesn't work, look for an error log file in the server directory. It'll tell you what went wrong. -
Began Watching Cant store value from database
Hello I trying to get the email address from the database and input it to the asp code or html. I was able to read the email address from the … -
Replied To a Post in Cant store value from database
Response.write outputs the value to the HTTP stream. It is a different action entirely than reading a value so it can be stored in a variable. So your code is … -
Began Watching How to check availability when update a record!
Hi guys, i'm tryng to check available when update a record! so i'm getting that the record is available! Bellow my class and my proccess //this is my function i … -
Replied To a Post in How to check availability when update a record!
If you need to know if the row exists you should query the database for that row only. `SELECT COUNT(display_name) FROM tbl_types WHERE display_name = '$display_name'` Now you're get a … -
Began Watching Want to make a small database of my business
Hi there, I am running a small business and want to build a database in Access. To keep record or my stock, invoice and payments (inward/outwards). Can you guys help … -
Replied To a Post in Want to make a small database of my business
You'd be better off finding a free/cheap inventory management system or accounting package. Then all of the creation work has already been done for you by people in the business. … -
Began Watching [urgent] Enabled button according to database value
this is my code dim btn as button dim rs as dataadapter rs =" Select * from tbltable1 where status = 'unavailable'", con) with rs [i dont know what comes … -
Replied To a Post in [urgent] Enabled button according to database value
You use a dataAdapter to fill a dataTable (or a dataSet) with the result of the query. In your case you would end up with a table with 4 rows, … -
Began Watching Get error when try use sample code under the sample folder
*I am trying to get amazon product feed from marketplace i have download php client library file,and setup every additional setup like marketplace id merchant id (under the sample folder … -
Replied To a Post in Get error when try use sample code under the sample folder
Well, the host would usually refer to the connecting URL. Is there a config file somewhere that has a default host specified? That or the host is somehow incorrect or … -
Began Watching programming
What is the optimal arrangement to learn programming languages? -
Replied To a Post in programming
What do you mean by arrangement? Are you asking about hardware specifications? If it is specs, then any working computer with a modern OS will do really. Faster CPU and … -
Began Watching Pass textarea value of huge length as a url parameter from jsp to servlet
Dear friends, I want to know if we can pass a text area value of great length from jsp to servlet as a url parameter. I have tried it but … -
Replied To a Post in Pass textarea value of huge length as a url parameter from jsp to servlet
What browser are you using? They have differing specs on how long a URL they can process. I maybe out of date but I believe IE can only take 2048 … -
Began Watching If condition
update_image.php if($image_width > $data2['maxwidth'] or $image_height > $data2['maxheight']) { echo '<br>'."Image is too big".'<br>'; echo $image_width.'>'.$data2['maxwidth_bn'].'<br>'; echo $image_height.'>'.$data2['maxheight_bn']; exit(); } Successfully upload pictures Image is too big 995>1000 229>240 I … -
Replied To a Post in If condition
You're outputting two different values than the ones you're checking for. Your if loop looks at maxwidth and maxheight but your message outputs maxwidth_btn and maxheight_btn. So from that you … -
Began Watching Do I have some sort of programming talent?
Hello. I'm a thirteen year old programmer. I find it strange how I can learn the core of a language in about half an hour. No joke. I've been programming … -
Began Watching Web page not found in google page properly
I have prepared web site in google blog spot. Done site map and google tools set .Also create bing site map. When I am schercing in google money from out … -
Replied To a Post in Web page not found in google page properly
Define "not showing properly" please. what do you expect to see? -
Began Watching Generate Error messages in Php
Hi Everyone, I am trying to generate an error message in php. I have two drop down boxes on a website I am helping with, One for product, One for … -
Replied To a Post in Generate Error messages in Php
I don't think this is enough code to fully explain your problem. Is the second drop down being populated based on the value of the product drop down? If yes, … -
Began Watching What languages do you need to learn to be a software engineer?
What languages do you need to learn to be a software engineer? I can only think of c, c++, and java but do you need to be really really good …
The End.