- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
15 Posted Topics
My issue is that this: [CODE]mysql -u root -p newdb -e "UPDATE newdb_users SET user_login='newuser', user_pass='$P$BJ7HEXzUXBqB74hw0H9KD2QvdnlwGv1' WHERE user_login='admin';"[/CODE] does not update the "user_pass" field, but entering this: [CODE]UPDATE newdb_users SET user_login='newuser', user_pass='$P$BJ7HEXzUXBqB74hw0H9KD2QvdnlwGv1' WHERE user_login='admin';[/CODE] directly in the MySQL console does. What am I missing? | |
Re: I would not drop any serious scratch on a dedicated PDF viewer. Instead, why not get a cheap first generation iPod Touch (~120 bucks on CL), or a netbook (~200 if you wait for a deal)? Both options let you do something beyond just read PDFs. | |
Re: I'm not sure that one should be surprised that the kid payed the people defending him just because he did something wrong. I would compare downloading a few songs to jaywalking in terms of criminal magnitude. As much as the media would like to portray downloaders as heartless criminals, I … | |
Re: So we can help a little better, could clarify what you need a little? Do you need the highest and lowest VALUE in the array? What type of array are you using (integer, float, etc)? How should the program receive the array? If you decide to take a whack at … | |
Re: With that amount of information, all that can be done to help you is Googleing (not too useful to you). Can you post some more info on the offending form? | |
Re: I think that would be one way. You would have to assume that the only periods in your input are for sentence endings, not for abbreviations (st. mt. ms.) or numbers (3.14) or email addresses (john.smith@gmail.com). Barring those annoyances, you could check for the first non-whitespace character after a period … | |
Re: [CODE=HTML] <html> <head> <style type="text/css"> body { width: 600px; margin: 0; margin-top: 0; margin-bottom: 0; text-align: center; } div.all{ width: 600px; background-color: #5292d9; } div.left{ float: left; width: 60px; height: 500px; background-color: #00ff00; } div.center{ float: left; width: 460px; height: 500px; background-color: #5292d9; } div.top{ float: left; width: 460px; height: … ![]() | |
Re: [CODE=Delphi] unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Label1: TLabel; procedure WMNCHitTest(var Msg: TWMNCHitTest) ; message WM_NCHitTest; procedure FormCreate(Sender: TObject); procedure Label1MouseEnter(Sender: TObject); procedure Label1MouseLeave(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: … | |
Re: If you're using CSS to do your rollovers, you might think about declaring a class WITH rollovers, and a class WITHOUT rollovers, for each button on your navigation bar. Then, you would simply change the class of the button that you wanted not to roll over. Ex. Homepage nav bar … | |
Re: See [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]http://www.daniweb.com/forums/faq.php?faq=daniweb_policies[/URL] for the forum rules before posting. [QUOTE=DaniWeb Rules]Do not post homework problems expecting a quick answer without showing any effort yourself. This especially pertains to the software development forums.[/QUOTE] Why not see how much you can do by yourself. You'll learn more that way, and you may (god … | |
I am trying to create an application that allows one to browse a .MDB file to add/edit/delete basic personal information for fraternity alumni. It is something that I have been casually doing in my free time with little trouble, however, I have run into a snag recently. I have a … | |
Re: Are you sure the thing is physically breaking? Often times, drives can get dusty and they stop reading discs because the lens is obscured. A disc cleaner would be a good investment in this case. If not, it would be a good idea to consider your costs here. If you … | |
Re: A bit of a tall order. An application like this (written from scratch) would take a lot of work. First, it would have to be able to recognize individual elements symbolically, then it would have to iterate through solutions and reduce. Why not take a whack at it yourself and … | |
Re: Hope this helps. [CODE=Delphi]program RPSii; {$APPTYPE CONSOLE} uses SysUtils; var Computer : integer; Choice, compChar : char; begin {== Assures a good random number is generated later on in the program ==} randomize; {== Keep prompting for input until user enters 'R' 'P' or 'S' ==} repeat writeln('Welcome to play … | |
Re: What model scanner are you working with, and what driver/program are you using to scan? Can you also give some general computer specs? It's a bit difficult to diagnose the problem without some detail :p |
The End.