-
Replied To a Post in how to implement IUD
> but it is not working What exactly is not working? -
Replied To a Post in If Else statement
> to check condition either the way ID exist in database > if not exist then way ID can be delete > if exist, message box appear show message this … -
Replied To a Post in move_uploaded_file Problem
You can only move a file to an absolute or relative path. So you'll have to replace `SITE_ROOT` with an actual path to your folder. -
Edited move_uploaded_file Problem
Hi, I'm trying to upload an image but ir gives me error on 'move_upload_file'. > Warning: move_uploaded_file(http://localhost/administrador/images/projects/54031d9e94d63a24dba816ddacbf315e.jpg): failed to open stream: HTTP wrapper does not support writeable connections in C:\wamp\www\administrador\includes\uploadImage.php … -
Replied To a Post in How to display button using bootstrap css?
> i want all letters to be visible You can set a `min-width` for your button. -
Replied To a Post in System.Windows.Forms
I agree with ddanbe, even though you can (thanks Dave) doesn't mean you should. -
Replied To a Post in Site width??
> it creates a 2 page view to make reading easier Wouldn't that be cool, two columns ;) -
Replied To a Post in System.Windows.Forms
I doubt you can use a messagebox in a console application. -
Replied To a Post in Site width??
Well, I must say. The way the forum list is now is very good IMO. Much more readable. -
Replied To a Post in Arm strong
> help me What do you have so far, and what do you need help with. We do not provide solutions, please read [our rules](https://www.daniweb.com/community/rules). -
Edited Arm strong
Write a C++ program to check Armstrong number in given range .Those numbers which sum of its digits to power of number its digits is equal to that number are … -
Replied To a Post in not sending value into the database
> dont know whyy its not working What is not working? What did you expect to happen, and what didn't? If it's the query, I suggest you add error checking. -
Marked Solved Status for Vivaldi
Just thought I should share: https://vivaldi.com Tech preview is out, so far I'm pretty impressed. -
Marked Solved Status for Large OP font
Is this a bug, or are you seriously keeping this? It's horrible. -
Marked Solved Status for humans.txt
http://www.humanstxt.org I came across this by chance. Do any of you guys/gals use it? I like the fact that you can thank the people who helped, however small the contribution, … -
Marked Solved Status for Looking for Word editor
For one of our projects we are looking for a Word editor that can be used in ASP.NET without the need of Office/Word being installed on the server. The requirement … -
Replied To a Post in PHP libraries for editor
Sorry. I've used the Editor plugin several times. The only one I know is [jqGrid](http://www.trirand.com/jqgridwiki/doku.php?id=wiki:features), but have ever used it. -
Replied To a Post in Facted Search using php and mysql
Can you show the code that builds your query? -
Replied To a Post in PHP libraries for editor
Can you show a screenshot of what exactly you need? If it is just a checkboxlist, it might be easy enough to build yourself. Or are you perhaps using more … -
Marked Solved Status for Email notification
Did you change the frequency of notification e-mails? Yesterday cereal voted on a post, and I got an email today. I've noticed this last week too, yet remember getting them … -
Edited how to implement IUD
i have following code @model EMS1.Models.UsersViewModel @{ ViewBag.Title = "List of users"; var grid = new WebGrid(source: Model.users, canPage: true, rowsPerPage: 10); grid.Pager(WebGridPagerModes.All); } @{ ViewBag.Title = "IndexViewModel"; } <script … -
Replied To a Post in The audio element wont play
If I open this: <!DOCTYPE html> <html lang='en'> <head> <meta charset="utf-8"> </head> <body> <audio controls preload="metadata"> <p><label>Error: Your browser does not support the audio element. Install the latest version. If … -
Edited BOOK
Can someone gave the book of linear algebra written by Abdur rahman or the books download link.. -
Created Email notification
Did you change the frequency of notification e-mails? Yesterday cereal voted on a post, and I got an email today. I've noticed this last week too, yet remember getting them … -
Replied To a Post in Site width??
But the larger font really threw me off, I zoomed the page out to be able to better read it. -
Replied To a Post in The audio element wont play
What is the rendered output? On all browsers, or just some? What doctype are you using? -
Replied To a Post in mvc 4
What exactly are you looking for? You need to be more descriptive than that. -
Marked Solved Status for Concat is not working in inclause
Hi, Please help me, i try to fetch category list as like below, where category ids is passed in inclause, it returns two rows. mysql> select c_id,c_name from category where … -
Replied To a Post in Site width??
As usual.... I don't like it. I thought I had accidentally actived the browser's zoom. I have a high resolution so I can see more on a screen, not less. -
Edited Loop to validate data in excel
Hi, I need to validate a text input with the rest of the data inside excel file. The following is my code. It just read the text input and only … -
Edited Php admistrator login not working on server
my php code working fine in localhost ...but i have uploaded on server my php administratr login page only validated but not redirect to admin page system browser says error … -
Edited Required Information when posting to the Assembly Forum (PLEASE READ FIRST)
When posting any request for help with an assembly language problem, we ask that you provide some crucial information: * The operating system (Windows, Linux, MacOS, etc.) the program will … -
Replied To a Post in my print prescription function is not working ...i need help you guys...
> functions are not working It would be more helpful if you stated what is supposed to happen, and what doesn't happen. "It's not working" is too vague for any … -
Replied To a Post in Concat is not working in inclause
Yes, it's possible, but I recommend using the first one. This should work I think: SELECT c_id, c_name FROM category WHERE FIND_IN_SET(c_id, (SELECT CONCAT(870,',',854) AS c_id)) -
Replied To a Post in Concat is not working in inclause
`CONCAT` is a string function, am surprised you even get that one row. The query you get is: select c_id,c_name from category where c_id in ('870,854'); My guess is that … -
Replied To a Post in more then 2 search fields
Did you update all select boxes with the empty value? -
Replied To a Post in more then 2 search fields
Isn't the problem that your select always have a value. <select name="model"> <option value="">Model</option> -
Replied To a Post in Reset Tabcontrol
You can make a function, pass a tab as parameter. In that function loop all controls of the tab and depending on the type clear the text, remove the image … -
Replied To a Post in Reset Tabcontrol
What's on those tab pages? Am sure it's possible to write a generic routine that can reset your components. -
Replied To a Post in Stored procedure definition syntax error
So you just omitted it? -
Replied To a Post in more then 2 search fields
Make those parameters optional, so only add the WHERE clause for a column, if that valkue actually has a value. Like this: $query1 = " SELECT * FROM products WHERE … -
Replied To a Post in more then 2 search fields
Still the same issue. If the three fields are filled (which you check), but `papers` isnt, you'll get `mtrl LIKE %%` which selects all records. -
Replied To a Post in Stored procedure definition syntax error
Does this help? http://stackoverflow.com/questions/2109366/changing-the-mysql-query-delimiter-through-the-c-api -
Replied To a Post in more then 2 search fields
@hericles is right, that is what happens. The variable `$paper` never gets a value. Your `if` on line 3 is probably not what you want. My guess is you want … -
Edited c++ window form
hey guys please tell me how to add two form in vc++ 2010 , i made a calculator in window form and i want to add one more form with … -
Edited unknown file system error- grub rescue:
I did my disk partition in windows7 to increase storage volume of C: drive , using "easeUS disk partition". after the partition was shown successful, my computer restarted but it … -
Replied To a Post in Query page content
You can with a htaccess redirect, but from what I can tell: wouldn't it be easier to use only one php file and include a different stylesheet? -
Replied To a Post in Enter data in html textbox and show it in database
Instead of `AddLyrics()`, just use `oSong.s_Lyrics = txtLyrics.Value;` protected void btnSubmitSong_Click(object sender, EventArgs e) { Songs oSong = new Songs(strcon); oSong.Where.Description.Value = txtDescription.Value; if (!oSong.Query.Load()) { oSong.AddNew(); oSong.s_Description = txtDescription.Value; … -
Replied To a Post in Enter data in html textbox and show it in database
> I want the code using Mygenerations functions . I have no idea what you mean by that. -
Edited Help With formating Zones
Hi im trying to do this projexct for class. Here is the code Public Class Form1 Dim index As Integer = 0 Structure Gradebook Dim ID As Integer Dim Exam1 …
The End.