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 Chriss Miller 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: Ator
  • Content: Threads
  • Order by date
  1. Ator

    MySQL 5.0 - How to rename database?

    Hi folks! I have installed MySQL 5.0 (windows). I also have installed the tool "MySQL Query Browser". Now I want to rename a database in MySQL Query Browser. I've tried with "RENAME DATABASE test2 TO test1", but it does not work. I get the error: "You have an error in your SQL syntax; check...
  2. Ator

    Limit + Function issue

    Hi I have a function "MaxCars()" that returns an integer. Then I try to execute this query: "SELECT * FROM Cars LIMIT MaxCars()" I get an error: "You have an error....near MaxCars()" How do I use a function in combination with LIMIT?
  3. Ator

    Array out of bounds problem

    Hi Im working with very old fortran programs (made in 1980s). Now I convert this old code using "Compaq Visual Fortran 6.6". Because the program consists of hundreds of files, there are several bugs (that has been accepted by the compiler at that time). Some of these are "array out of bounds"...
  4. Ator

    XPath query problem

    Hi I have a XML file like below. This XML is loaded into a DataSet, and I then create a XmlDataDocument. (Environment = VS, C#) XmlDataDocument doc = new XmlDataDocument(dataset); Using this document, I create a XPathNavigator: XPathNavigator nav = doc.CreateNavigator(); I now want to...
  5. Ator

    Write text to focused field within another window

    Hello Is it possible to send text to a specific input-field within another window? First I start up my program. This program consists of one area to enter text. When you press a button, this text should be sent to the focused control of another window. Is it possible to preserve the focus of...
  6. Ator

    1 px text border

    Hello Does anyone know how to draw a 1px text-border on a Bitmap? I've created a Bitmap and want to draw a text with "drawString(...)". For instance, I want to have 1px black border with white interior. (This is Windows Forms) Kind regards!
  7. Ator

    Flat Controls (.NET 2.0)

    Hi Does anyone know how to make these controls flat? - TextBox - ComboBox - CheckedListBox - DateTimePicker (ComboBox has a property "FlatStyle", but I can't change the border-color then) Is there any free controls to download? Kind regards
  8. Ator

    Sort column in dataview

    Hello I have a column in a dataview that I want to sort. The datatype is string. The values are like: "0 %" "10.2 %" etc How do I implement sorting on values like those? I can not convert the datatype to int (and skip %). But if I have int's, you sort like "dataview.sort = 'mycolumn DESC'"...
  9. Ator

    Print code in color

    Hello I really need som help. Im using Compaq Visual Fortran 6.1. In the "File->Print Colorized Fortran" you are able to print out the code in color, but you can't set the page-margins, header/footer. Is it possible to do this in CompaqVisualFortran? Or does anyone know another tool that...
  10. Ator

    Catching all exceptions at one place

    Hi Is it possible to catch all exceptions in _one_ place? I want to have a error-report system, that catches _all_ exceptions (including the exceptions that have been specially handled). I´ve only come up with: [STAThread] static void Main() { try { Application.Run(new Main()); }...
  11. Ator

    DataGrid - Remove left arrow

    Hi I have a really big problem I cant find a solution for. Does anyone know if there is a way to remove the black arrow to the left, that points out the selected row? I really want to get rid of that arrow. Im using VS2003.
  12. Ator

    xml-help

    hi Using parser, how can i deal with xml tags? For example, having <aaa>...</aaa> <bbb>...</bbb> <ccc>...</ccc> <ddd>...</ddd> <eee>...</eee> <fff>...</fff> and $currentTag = <aaa> can i see the value of tag <fff>;

Part and Inventory Search

Back
Top