-
Began Watching Any ideas for me on why my program is not running correctly?
Hello all, I am working on assignment for class and I thought I had this one but something is wrong. This is an inventory control program that needs to display … -
Replied To a Post in Any ideas for me on why my program is not running correctly?
You only create one Supplies object and then proceed to make it equal to product1, then product2, then product3, etc. At no time in your code do you have two … -
Began Watching textbox arrays
how do i insert the textboxes with different data inside of them in one database table i have this code dunno what to do next Private Sub btnadd_Click(ByVal sender As … -
Replied To a Post in textbox arrays
You could specify your SQL command with a parameter and then, in the loop, set the parameter to each text box. Or you can build up a long SQL string, … -
Began Watching How to create a dating site
I am going to start dating site business. I am not so experienced on it. So seeking for help from experienced person. -
Replied To a Post in How to create a dating site
But you can code right? You need tips on the site design or are you looking for someone who can build it for you? If the second option, its a … -
Began Watching Text Box data immediately verify from Database
Dear All, I am using ASP.Net with VB.Net Visual Studion 2010 I have a textbox if I write i.e. 654321-1 and immediately it verify from database table that this is … -
Replied To a Post in Text Box data immediately verify from Database
I referred to autocomplete because any autocomplete tutorial explains the same concept - getting data and showing a response without refreshing the page. Break the task down: 1) learn how … -
Replied To a Post in Sum Arrays in PHP
In your code smaple you have the start of the FOR loop but I can't see where it ends. Is you final echo ouside of the FOR loop? If it … -
Replied To a Post in Sum Arrays in PHP
OK, I see now. In that case define $resultMax and $resultMin before the FOR loop, so they aren't reset/overwritten on subsequent loops, and use the if/else to tally up totals … -
Replied To a Post in Sum Arrays in PHP
Sorry, I may not be understanding exactly what you need then. In your initial post you said you needed to get 105.29, the sum of 55.14 & 50.15 (the max … -
Replied To a Post in Sum Arrays in PHP
You still have the if/else clause in there. If $id_marca != 1 the resultMax is calculated otherwise it is 0. If $id_marca = 1 then resultMin is calculated otherwise it … -
Began Watching Copy data from access database to sql database through coding
i want to copy data from an access database to a sql database 2008 through coding in vb.net any help ? NB : I WANT ALSO TO CHECK FOR DUPLICATES … -
Replied To a Post in Copy data from access database to sql database through coding
After you've got your actual connections sorted you will need to extract the data from access (lets assume you only need one table), store it in memory and then do … -
Began Watching need to get data from multi table
Hello thanks in advance i working on project i used query select project_table.project_id as proid,resource_request.*,sum(resource_table.resource_budget)as resourcecost,resource_table.* from project_table left join resource_request on resource_request.project_id = resource_request.project_id left join resource_table on resource_table.resource_id … -
Replied To a Post in need to get data from multi table
You have an error in your SQL query, if what you have written above is an exact copy of your code. You have "from project_table left join resource_request on resource_request.project_id … -
Began Watching Sum Arrays in PHP
$result =0; if ($id_marca!=1) { $result = $result + $vl_max*$pares; // id_marca = 22 [ 38 pares * 1.451 = 55.14 ] } elseif ($id_marca=='1'){ $result = $result + $vl_min*$pares; … -
Replied To a Post in Sum Arrays in PHP
If you want both values totalled then you don't want the IF/ELSE structure because that is the reason only one calculation is running (whether $id_marca equals 1 or not). Depending … -
Began Watching Upload Image to SQL Server DB Duplication
Hi I have the following code that uploads images and other files to an SQL Server DB on GoDaddy via a FileUpload Control on an aspx page. Public Function InsertData(ByVal … -
Replied To a Post in Upload Image to SQL Server DB Duplication
Have you stepped through your code and checked your SQL query is correct and that InsertData() doesn't get called twice? Although I don't see how either of those things could … -
Stopped Watching Where is the problem in this SQL statement?
Hi, I recieve the following error message: "java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression'name '" when I run this statement: [CODE] sql = "INSERT INTO … -
Began Watching Onclick display div only flashes the div
I have a link that once clicked is suppose to make a div visible. So far it does but it only makes the div visible for a second then it … -
Replied To a Post in Onclick display div only flashes the div
Yeah, you need to change your onclick to = "blackbox();return false" to stop the link actually trying to fire. Its running the blackbox function and then reloading the href (the … -
Replied To a Post in TextBox with Validating Event (TextBox_Validating) Problems
Yep, has that solved the problem? If you call that after retrieving and loading your values? -
Replied To a Post in store coordinates
MS SQL has two data types, geometry and geography, which are designed for holding that type of data. Define your columns using them. And read the docs, there's a lot … -
Replied To a Post in Issue changing SA password
Is the server set to Windows only authentication? If yes, logins with SQL server credentials will always fail. You'll need to set it to use mixed mode from the security … -
Replied To a Post in TextBox with Validating Event (TextBox_Validating) Problems
call the addition code after your code that retrieves the record values. At that point the textboxes will have their amounts displayed in them so you can safely call the … -
Replied To a Post in Textbox with time
Um, do you mean you want up/down buttons and textbox, and clicking on the up/down buttons makes the time increase/decrease? I don't quite understand but I'll proceed on the assumption … -
Replied To a Post in preprocessing with html file
There is clearly some HTML code that you're stripping the HTML tags off that is gettings left behind. The last part of the random looking string is "textdecorationnone" which equals … -
Replied To a Post in Online Database?
What you need is going to vary a lot depending on the host and how they implement their control panel. They may not even have a control panel and everything … -
Replied To a Post in Text Box Masking
What exact library did you use that could only do the date? that isn't a limitation of AJAX itself. And you don't want to even be using AJAX for that … -
Replied To a Post in Text Box data immediately verify from Database
The technology behind that functionality is AJAX. You will be able to find plenty of tutorials online if you search for AJAX and autocomplete -
Replied To a Post in how to update retriving values from a while loop
The clue is in the error message. Unknown column 'chem1115' indicates that your sql statement is wrong. You have data where a column name should be. And here is why: … -
Replied To a Post in Array error
You have only added 10 elements to the array dblMarks but you are stepping up to 11 in your loop. No position 11 exists in the array. -
Replied To a Post in How to send data from and to a database from a table view in Objective-C
If you're using iOS (developing for iPhone or iPad) you should use SQLite as the database, other MySql is fine. When I started with iOS I found the native way … -
Replied To a Post in plz give me information
rel="nofollow" is a tag that can be added to links to prevent web crawlers (spiders) from following a link and indexing that page. There is no dofollow tag, to get … -
Replied To a Post in db design for hairdressers
Have you attempted any of this or do you just expect someone else to do it for you? I don't mean to be harsh but if you're not prepared to … -
Replied To a Post in when to use paper book and when ebook?
I have a fairly big library and I still like reading paper books but I have found recently that the ease of availability of e-books, and how many you can … -
Replied To a Post in Searching database MS Access with VB.net with 2 textbox only
I'm confused, your code doesn't match your description. You aren't searching by ID, you're using select all without a where filter so its returning everything. And then your placing the … -
Replied To a Post in Upload an data in excel file using ASP.NET into MSSQL database
And what is the error message? I don't see it in your post... -
Replied To a Post in Create a standby database (for backup)
Look into replication. It allows you to set up a primary and secondary server, the secondary receiving changes from the primary. With two servers set up this way you would … -
Replied To a Post in Horizontal spry menu wrapping in IE
You're referring to the main menu at the top of page, under your banner image I presume? it doesn't show correctly in Chrome either. The problem isn't with the spry … -
Replied To a Post in Similar Views
You can create a view in storyboard or interface builder that has the common subset of elements and then, once your view is loaded via the load nib method, add … -
Replied To a Post in an array to add 8 best done subject grades from the 10 subject done
You will need to store the ten label values, may as well be in an array, sort it and either only access the first 8 or remove the last 2. … -
Replied To a Post in How to get values of selected Listbox item into Listview
What exactly is going wrong? Can you not pass the order id to the stored procedure or is the stored procedure failing? Your screen shots indicate that selecting an order … -
Replied To a Post in Program for production department
Do you need our help with anything? You haven't asked a question or indicated you're having a problem... -
Replied To a Post in UIView within UIScrollView
you should have the scrollview size set as less than the content size i.e. the currently viewable area and the content size set to the full area the scrollview should … -
Replied To a Post in HELP : How to close form with another form !
All you have done here in create a new instance of Form1 and then closed that. There is no connection between the Form1 you have open and the new Form1 … -
Replied To a Post in Create a program to accept entry for three students
Sounds like somebody's homework assignment... -
Replied To a Post in visual c# app
You can use as many as you like to get the job done.
The End.