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 bkrike 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: erixire
  • Content: Threads
  • Order by date
  1. erixire

    Intersection of dymamically created SELECT statement

    Hi, I want to know if it's possible to do a few intersection (WHERE EXISTS, IN, INNER JOIN, I really dont' know how???) on some select statement created dynamically. The number of fields and there names are always the same in the select statements. But the number can vary. So I want to do...
  2. erixire

    Office suite erasing the clipboard when opening

    Hi, I have this problem: whenever I open Word or Excel or another program from the office suite, my clipboard get reseted to nothing. So if I copy something from say Internet Explorer and then I open Word to copy in it, nothing happend, because the clipboard is empty. Once Word is open, I don't...
  3. erixire

    Insert value of Table1 into Table2 automatically

    Hi, I am totally new to sql server. I have this problem: When I make a new entry in a table (Table1, with a field "ID_number" of type 'int identity(1,1)'), I want this value (the ID_number) to be inserted automatically into another table (Table2). I browsed a lot on the internet for Sql Server...
  4. erixire

    VB.NET with Microsoft Word problem.

    Hi, I recently did an application in VB.NET which is using some Microsoft Word objects. I compiled it and everything was fine...until a new version of Microsoft Word was installed on the computer. Is there a way to compile my code so that it is not linked to a specific set of library of...
  5. erixire

    retrieve list separator symbol

    Hi, Is is possible to retrieve the list separator symbol (the one found in the regional options in Windows) with a special function or object? Usually, it's "," or ";", but I want to be sure of the separator the user is using when he runs a certain vba program. Thanks
  6. erixire

    Creating an Adobe Acrobat Object

    Hi, I am trying to create an Adobe Acrobat Reader object to open a PDF file and show it to the user. But I always get an empty variable (= NOTHING). Here is how I try to declare my variables: Exemple 1: Dim myAcroApp As Acrobat.CAcroApp Dim acroExchAVDoc As Acrobat.CAcroAVDoc Dim acroExchPDDoc...
  7. erixire

    Automatic scroll down of a listbox

    Hi, Is it possible to automatically scroll down the scrollbar as I add new items to a listbox? Thanks
  8. erixire

    Open Folder

    Hi, Instead of an open file dialog, is there a way to have an "OpenDirectory" or "OpenFolder" dialog box with Visual Basic? Thanks
  9. erixire

    Accessing public variable of the owner form

    Hi, I call a new form within my main form like this: dim toto as new myNewForm toto.ShowDialog(Me) From this new form, I want to access public information from the owner (the main form). I can I do that? I tried something like this in the myNewForm without success: msgbox...
  10. erixire

    getting the path of the current application

    Hi, Is it possible to get the path of the current application? Because I use the Setup Installer provided with Visual Studio to install my application. I have included somes files in the application folder and I want to read them within my application. Is there an object or something that tells...
  11. erixire

    How to Move a window that is bigger than the screen

    Hi, Is it possible with Windows 2000 to move a window (exemple: a message Box that as too much text, so doesn't fit the screen) that is too big to fit the screen? Because I have this problem and I want to see what is written at the bottom of this window. Is there something like a key...
  12. erixire

    Cannot quit Word application

    Hi, I have some difficulties using the quit command for a word application. Here is my code: Dim WORDapp As Word.Application WORDapp = CreateObject("WORD.Application") WORDapp.Visible() = True ...some code here... WORDapp.Quit()...
  13. erixire

    problem with arithmetic precision

    Hi everyone, I have a big problem. I am using gawk under windows and I want to add to column like this: 5.125 9.236 7.458 6.473 1.487 9.196 I want the output of $1 + $2, so 14.361 13.931 10.683 But it only gave me: 14 13 10 A kind of truncation. The thing is that this problem is only on some...
  14. erixire

    How to start a program

    Hi, I'm totally new to this language. I searched a lot on the internet without result for my question. How do you start another program (for example: a DOS shell) like if I was in the MSDOS shell. For example, I want to be able to open a Dos shell when I click a button, so I want to do...
  15. erixire

    Changing the color of the BackGround of a selection

    Hi, Is it possible to change the background color of the selection in a Text Widget? By default, when you double-click on a word, it is highlighted in Black and the foreground color is white. But I want to put the background color has another color. Can somebody explain how to this please? Thanks.
  16. erixire

    Printing every Monday from 1998 to today

    Hi, Is it possible with Oracle to print every monday from a certain date (1 january 1998) to today in a kind of list like this: 01-01-1998 08-01-1998 15-01-1998 ... Thanks a lot,
  17. erixire

    GL2 to photo format (gif, bmp, jpeg) converter

    Hi, Does somebody knows a good converter for *.gl2 files to a photo format like *.gif, *.tiff, *.bmp or *.jpeg? If so, is it possible to get one for free? Thanks a lot.
  18. erixire

    Opening port 23 (telnet)

    Hi, I want to access a computer from another place. I tried to telnet on port 23, but a message appear with "...connection refused ..." in it. I want to know if it's possible to open, activate or whatever we call that, the port 23 so I can telnet on it. If so, how can I do such a...
  19. erixire

    Changing the font in MSDOS full Screen Mode?

    Hi, Is it possible to change the font in MS-DOS Full Screen Mode (Alt+Enter)? If so, how? Can I also change the number of character per line? Thanks
  20. erixire

    Reading multiple files at once?

    Hi, Is it possible in Awk to read multiple files at once so that awk return the concatenation of every first line, second line, third line, etc? For example, suppose file "File01" contains: 1 2 3 4 file "File02" contains: Dog Cat Bird Snake Then, I want to ouptut 1 Dog 2...

Part and Inventory Search

Back
Top