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

  1. erixire

    Intersection of dymamically created SELECT statement

    Thanks for the replies, Actually, my problem is that the request is created dynamically. Let me explain. I have a PHP script which query a database. A table is created from that query. I want my users to be able to sort thru the first result by clicking one element from the result. Because I...
  2. erixire

    Intersection of dymamically created SELECT statement

    Hi again, I haven't been clear enough, sorry for that. I really mean 'INTERSECTION' mathematically speaking (set theory). I want the intersection of all my sets returned by the 'select' statement. For exemple: --Suppose that this is the output of the first 'select ... from ... where ...'...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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
  8. erixire

    Automatic scroll down of a listbox

    I found a way finally: 'example: the listbox name is lstInfo lstInfo.TopIndex = lstInfo.Items.Count - 1 Hope this will help someone else.
  9. erixire

    How to Move a window that is bigger than the screen

    Thanks to everyone, but, as far as I can see, there is no way to let a window be above the screen. Some of your tips helped me anyway. Too bad you can do that with Windows. I think Linux does it (I'm not sure) but that's another story (I don`t want to start a Linux-Windows war here). Have a nice...
  10. 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...
  11. 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
  12. 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
  13. erixire

    Accessing public variable of the owner form

    The myvariable =Me.Owner.sendvariable doesn't work for me. I don't know why. But your link above gave me the answer I wanted. So thanks a lot.
  14. erixire

    Accessing public variable of the owner form

    How do you call it? I tried a lot of things, but I cannot see in the member list the function "sendvariable". For example: 'My Main Form Public Class frmMain ... 'Display the child form Dim childForm As New frmChild() Me.AddOwnedForm(childForm) childForm.Show() ... public function...
  15. erixire

    Accessing public variable of the owner form

    Thanks chmohan, but I still have my problem: how do I access the variables from the main form within my new form? Even with your example, I wasn`t able to reach a public variable of the main form. I tried this in my new form: Me.Owner.???.myPublicVariable I don`t know what to put in place of...
  16. 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...
  17. erixire

    getting the path of the current application

    Thanks a lot NipsMG. Just to know, is there a difference between StartupPath and ExecutablePath?
  18. 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...
  19. erixire

    How to Move a window that is bigger than the screen

    Well, I don't have another monitor (my card doesn't support it) and I think that this box can be bigger than 2 monitor screen. So I'm still stuck with the problem. Maybe someone will come up with something else? Thanks for all your help guys.
  20. erixire

    How to Move a window that is bigger than the screen

    Actually, I think that even at the highest resolution, I would not be able to see it. The thing is that the window is not large, but very long. It's a message box with a lot of information (which I cannot control). But it really seems like Windows doesn't want you to put a title bar higher than...

Part and Inventory Search

Back
Top