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 Mike Lewis 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: *

  1. anrver

    Start office (or other) program with named empty file.

    Hi, Is there a way to start a program and to make sure that the file will be saved with a name that was pre-defined. I have a wizzard who collects information. Depending on that info a filename is generated and a program is selected (word, excel, paint, powerpoint etc) . At the end of the...
  2. anrver

    Sort DataTable

    Hi, I want to sort a datatable and read the contents. I already tried the the following : ds.Tables("Details").DefaultView.Sort = "Order" For Each row In ds.Tables("Details").Rows ... Next But this doesn't work. Can anyone help me ? Erik Verstichel Panalpina World Transport. Antwerp, Belgium
  3. anrver

    UPDATE with SELECT

    First my code : UPDATE adr SET UniCde = (SELECT Unicde FROM adr_cross WHERE adr.AddressID = adr_cross.AddressID) As long as the primery key of table 'adr_cross' is 'AddressID' everything works fine. When I change the primery key into 'UniCde' i'v got no result. Is there a way to update my...
  4. anrver

    Convert Char to Numeric

    Hi, I'm busy placing a lot of TXT files into tables. I'm working with temporary tables who are an exact copy of TXT files. All columns of the temporary table are 'char' formatted. On inserting the temporary records into a definitive table I want to use the CAST function. Im looking for a way to...
  5. anrver

    Update with conditional variable

    I'm updating a column as follows : UPDATE table SET Office = 'ANR' WHERE Department = 'SE' GO UPDATE table SET Office = 'BRU' WHERE Department = 'AI' Is there a way I can do this in one run ? I was thinking about setting a variable depending on the 'Department' value and updating the column...
  6. anrver

    Can two forms work with the same dataset ?

    Ok, I will try out both solutions. Many Thanks Erik Verstichel Panalpina World Transport. Antwerp, Belgium
  7. anrver

    Can two forms work with the same dataset ?

    I'm just starting with VB.net. I have a form with an overview of all my customers and I have a second form for the entry and edit of a customer. I made it possible to click on a customer that is listed on the first form to open the second form. I believe that in this case the dataset of my...
  8. anrver

    My form doesn't appears after starting debugging

    The subject explains it already. After that I press the debug button VB.net starts compiling my application but my form doesn't appear. I have to stop debugging and to retry for a few times. I installed VB.net on another laptop and I have the same problem. I'm I alone with this strange...
  9. anrver

    'The directory name is invalid'

    Just back from holydays. Placing my files into a IIS directory did solve the problem indeed. Many thanks for your help Erik
  10. anrver

    'The directory name is invalid'

    Hi, thanks for your reply. I use Namo 5.0 as HTML editor. I've created a .php page with following code : <html> <head> <title>No title</title> <meta name=&quot;generator&quot; content=&quot;Namo WebEditor v5.0&quot;> </head> <body bgcolor=&quot;white&quot; text=&quot;black&quot...
  11. anrver

    'The directory name is invalid'

    Hi, I'm trying to set up a PHP/MySQL environment. When I make a preview of my pages, wich include some PHP code, I receive the following message : The directory name is invalid. The configuration is as follow : Windows XP Pro IIS 5.1 installed MySQL 4.0 installed and active PHP 4 installed My...
  12. anrver

    Surpress extra formfeed

    I'm using the follow code in Providex (a Basic language) to print a RTF file. This will open Word, load the file and print it out. This works fine except for the fact that a formfeed is generated after the print. 06480 DEF OBJECT WD,&quot;[file]&quot;+RTF_FIL$ 06490 PRINT WD'PRINTOUT() Can...

Part and Inventory Search

Back
Top