Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: kyru
  • Order by date
  1. kyru

    Basic question about a procedure

    Hello everyone, I'm rather new to MySQL so I've a question in a basic thing that is that the way I guess a procedure should be defined is giving an error in the DECLARE _valorOld VARCHAR(100); about an unexpected if and even an unexpected end even if I eliminate the if section. The code is the...
  2. kyru

    Searching for a certain windows cmd command

    Thanks a lot for your answers. I'm describing you what my problem is, so you see why I needed that cancel button and maybe if you can find a better way to do it, (I think I have found a good way to do this anyway) We have a shared disk with data on a intranet that is accesed by a lot of people...
  3. kyru

    Searching for a certain windows cmd command

    I suppose it's a windows cmd command or maybe it's a system call. I'm searching for the command that allows to cancel the movement/copy on a file (what happens if you press the cancel button on the windows dialog box while copying/moving that file). Greetings.
  4. kyru

    Limiting number of access to open a protecteddatabase

    I'd like to know if there's a way to limit the number of times you can input a password to open an access database. I mean you get your textbox for inputting your password and if you fail it, for example, three times, you get a message "the database has been blocked for an hour" and you cannot...
  5. kyru

    Error in building an example module

    I have a file mod_foo.c in the folder foo in the bin directory of Apache, this file together with its components has been created with ./apxs-g-n foo. The process I have seen that it is necessary to generate it is: ./apxs-c foo/mod_foo.c gcc-fpic-DSHARED_MODULE -I/usr/local/apache/include-c...
  6. kyru

    Newbie question: Compiling and loading a module

    Sigh, the problem was that in ./configure -prefix=/usr/local/apache --enable-module=shared in module you had to put the name of the module, like dav or proxy... how lame...
  7. kyru

    Newbie question: Compiling and loading a module

    I'm sure this is a truly simple thing to do but I'm getting a serious headache with it. I prefer being told the whole process to do it, until now I've done this way: a)I have my Apache source on /usr/src/http-2.0.63 I have inputted the following commands: ./configure -prefix=/usr/local/apache...
  8. kyru

    header() function worked, then didn't work

    Maybe you are inputting something even if it doesn't look like it. You could try using ob_start() y ob_end_flush().
  9. kyru

    Frustrated with results...

    Well you get the info anyway... So you can work on your results. Anyway to do that directly you might need to restructure your databese with something like: Table A: Field1:Key id Field2:'Title of song' Table B: Field1: id Field2:'day'<- Both fields act as key. This way you could get first...
  10. kyru

    VB.NET to C# question - End statement equivalent?

    You may have something still on-going in application that doesn't allow it to close, so Application.Exit() doesn't work properly. If you are using it on a FormClosing method, you have to set the Property Cancel of CancelEventArgs e to true. It might also work from other place in the application...
  11. kyru

    issue with a case statement

    You can set the selected item in the code, after the user has chosen the item you select it again in the code. Anyway yours is a pretty weird error that shouldn't happen. Are you checking the SelectedItem of the ComboBox directly? If you are putting the value into a ComboBox_SelectedIndexChanged...
  12. kyru

    Where and how does MySQL save databases?

    Windows XP.
  13. kyru

    Where and how does MySQL save databases?

    Well I finally found the answer. It was putting the databases into a hidden directory so I couldnt find it. If someone else has this problem the directory can be checked by looking into the my.ini file and checking the element datadir. Thanks for your hel Vacunita.
  14. kyru

    Where and how does MySQL save databases?

    Yeah, it's supposed to be on a /data in MySQL folder but I don't have it. I just have /bin /Doc and /share directories. This is a pretty weird problem...
  15. kyru

    datagird columns

    Check this document: http://www.dotnetjohn.com/articles.aspx?articleid=49
  16. kyru

    Where and how does MySQL save databases?

    This may look as a very lame question, but I mean, if I create a database with MySQL it seems to be nowhere. In fact I've searched the hard disk using the name I've given to the database and nothing appears. To make my application work on another computer I could save the database info into a...
  17. kyru

    Graphics drawing problem

    You can put is on a Form_Load method anyway, I bet it will work there.
  18. kyru

    How to send content of HTML file in mail

    That's right, and to send like html do the following... $mail = new PHPMailer(); .....Configuring $mail $mail->IsHTML(true); // send as HTML
  19. kyru

    &quot;XSD Choice&quot; for attributes in XSD file

    I want to declare the following thing in an XSD file: Let's suppose we have a <field></field> item. This field can choose between three different types of attributes, but can just have one of them or none. I mean: <field name_attribute="value"> <field name_attribute2="value"> <field...
  20. kyru

    Defining user-made Exceptions

    It gave the error: Call to undefined method Exception::exception() Anyway I finally solved it, it was something locical after all, it was just question of renaming __construct by exception. Thanks for your interest.

Part and Inventory Search

Back
Top