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 SkipVought 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. edwardtisdale

    VB resources

    good ADO book is Professional ADO 2.5 Programming by Sussman, Conard, and Matsik.
  2. edwardtisdale

    Accessing VB in another partition using c/c++ compiler

    Okay, but the c++ was installed from win2k. I have three drives:c:win98,d:compilers,e:win2k all are fat32 all compilers installed from win2k. But thanks for pointing me to DLLs.
  3. edwardtisdale

    Sorting

    This is from the book DATA STRUCTURES USING C AND C++ second edition by Langsam, Augenstein, and Tenenbaum: 1. Bubble Sort: least efficient. x= array of integers sorting 1 to n pass through the file sequentially several times, comparing each element with its successor and interchanging if...
  4. edwardtisdale

    How to create a database using ADO and VB?

    Speaking of different versions of ADO, at the msdn website for ADO would downloading and installing MDAC 2.6 Software Developers Kit be the way to get the newest one? I can't seem to find anything there simply called ADO x.x.
  5. edwardtisdale

    debug window.

    The immediate window is where to put code that you do not want in the regular program for a quick example. I am thinking it means the watch window and to put watches on variables much like C++ watches.
  6. edwardtisdale

    debug window.

    In the MSDN Library (New this Jan) is an example Linear Linked List coded in VB. A comment at the end says: 'Click the Command1 button to Reverse the list and print the results to the debug window. How do I access this debug window? I looked through all of the menu and searched through Help...
  7. edwardtisdale

    What are the Advantages of VB vs C++

    And since no one has mentioned it, C++ has compilers that are not Microsoft, which creates more programmers with new ideas not under the big Gate.
  8. edwardtisdale

    ADO-only board

    There is an ADO -only board at http://www.vb-bookmark.com/cgi-bin/UltraBoard/UltraBoard.pl?Action=ShowPost&Board=Activex&Post=6&Idle=10&Sort=0&Order=Descend&Page=0&Session=edwardtisdale.97979466232569 or simply go to www.vb-bookmark.com and click to it. No discussions there yet. Anyone...
  9. edwardtisdale

    Telephony

    ...and so far I have looked into ... ADO TAPI running asynchronously
  10. edwardtisdale

    Telephony

    Trying to work my way into the IT department for the Telephony company I work for, I would like someone to direct me to the best place in VB to start. For example, can someone tell me something about how to connect to the headphones and microphone?
  11. edwardtisdale

    Scripting.FileSystemObject

    Okay, thanks. I tried it, but the only thing I saw im my update options on my IE 5.01 was Visual Basic Scripting Support. I installed it, but it had no effect. Could it be I have to do a full reinstall?
  12. edwardtisdale

    Scripting.FileSystemObject

    Scripting.FileSystemObject was in some code I got of an email tip, but does not appear to exist in my VB6.0 LE. Can I add it without an upgrade?
  13. edwardtisdale

    using non-VB text editors

    Hey, I just tried to open it again and got a few yes/no prompts to continue and then this: This project was developed in a previous version of Visual basic. If the code in this project declares variables of data access objects, such as Database or Dynaset, the project must now reference to the...
  14. edwardtisdale

    using non-VB text editors

    I got curious as to if I could save VB code in the VC++ 5.0 text editor (as a .frm) and then open it in VB to where it would work the same as if I simply typed it into the VB 6.0 from code window, so I tried it. It opens it not as a form, but a module. I don't see why, though; I thought all...
  15. edwardtisdale

    Adding a new property

    I looked it up in help and found: (start paste) Adding Properties to Controls You implement properties of your ActiveX control by adding property procedures to the code module of the UserControl that forms the basis of your control class. By default, the only properties your control will...
  16. edwardtisdale

    Adding a new property

    I llooked it up in help and found: (start paste) Adding Properties to Controls You implement properties of your ActiveX control by adding property procedures to the code module of the UserControl that forms the basis of your control class. By default, the only properties your control will...
  17. edwardtisdale

    3 problems here

    now this: <br><br>E:\jdk1.3&gt;cd bin <br><br>E:\jdk1.3\bin&gt;javac d:\Java\shoppingcart.java d:\Java\shoppingcart.java:3: 'class' or 'interface' expected<br>public void doPost(HttpServletRequest request, <br><br>^ 1 error <br>
  18. edwardtisdale

    3 problems here

    I have been having this problem since I decided to put my compilers in a seperate partition. I don't think that that has a single thing to do with why I get this error. I remember specifically downloading the newest version of java development kit and also I would not have named the file 1.3 if...

Part and Inventory Search

Back
Top