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. mainit123

    Cable Modem IP vs Router IP

    Gentlemen: Thank you all so much for a series of prompt and robust replies! Of course, I have to give myself 50 lashes for implying this Siemens Speedstream is doing DSL when in fact it is cable. My apologies to Crowtalks. I am dealing with Cox Cable installing cable service in a new business...
  2. mainit123

    Cable Modem IP vs Router IP

    I have a Siemens Speedstream 4100 modem providing DSL service. This device comes with a default IP of 192.168.0.1 and that has been the active IP address on that device from day one. I am now installing a D-Link 2310 broadband router that comes with the same default address of 192.168.0.1 It...
  3. mainit123

    button on a dynamic form

    I am looking at Chrissie1's reply where he changes the Me.Close() to newcase.Close(). When I entered the same code in my project, I got an error that newcase was not declared. As I look at the code in the thread, I am wondering how you can use "newcase.Close()" in the Private Sub btnExitCase...
  4. mainit123

    Create action on dynamically created button

    I am adding a button to a form at runtime: Dim formabc as New Form() Dim newbut as New Button() newbut.Text = "Go for it" newbut.Location = New Point (100,100) formabc.Controls.Add(newbut) I am sorry if this sounds simplistic but how can I now add any action for this button if I can't get out...
  5. mainit123

    Open a form after opening a form

    I was able to see how to solve this by referencing the form ahead of time using DIM. Take care and this thread can be closed.
  6. mainit123

    Open a form after opening a form

    I have a main form that I use as a start point. Once a checkbox is checked, I successfully open a 2nd form on which is a button. Upon the user clicking that button, I am trying to open a 3rd form called NMember. On the button click action on the 2nd form, I have this code: Private Sub...
  7. mainit123

    Best way to remove duplicates in text file?

    Thanks for the reply. I am sorry I neglected to mention that bringing in a database is not an option here. It is strictly a matter of doing string comparisons and I was looking to see if there was a known routine that was optimized for this task. I know I have my work cut out for myself when...
  8. mainit123

    Best way to remove duplicates in text file?

    I generate flat ASCII text files in a application where each row contains a full name e.g., John Q. Public. It is unavoidable that I will end up with duplicates of some names so naturally, I am looking to pare down the output file to only unique entries. While I know I could write code to look...
  9. mainit123

    Use of ArrayList.Contains

    Thanks so much for the great and timely response. I will put this to use immediately and I appreciate your efforts in helping me.
  10. mainit123

    Use of ArrayList.Contains

    I am trying to use the built-in VB tools rather than manually code my task of trying to tell if a string character I have trapped is or is not a member of an array. This would seem to be a classic use of ArrayList.contains but the documentation is sparse on examples that I can go forward with...
  11. mainit123

    Using Shell to do Windows/file based tasks

    Hello- I am having a great time coding in Visual Basic using Visual Studio 7.0.9955 doing the kinds of things it was meant to do i.e., forms, dialogs, etc. However, it is probably no surprise that now and then while working alot with ASCII flat files, I need to execute a DOS type command (more...
  12. mainit123

    Draw graphic object and place button on same form?

    To jebenson- I can't thank you enough for this quick and soooo helpful response. You can't believe what a roadblock you have pushed aside for me and I truly appreciate it. In the spirit of this forum, I will do all I can do help fellow users, even though my expertise is somewhat limited...
  13. mainit123

    Draw graphic object and place button on same form?

    I am using Visual Basic .NET, Version 7.0.9955 that comes with the Michael Halvorsen Book, "Microsoft Visual Basic .NET - Step by Step." I assume what I am trying to do is doable in Visual Basic unless someone can tell me there just isn't a way to accomplish this task. I am trying to...
  14. mainit123

    Graphics and Button on same form

    I can create code to draw a line on a form. I can create code to place and display two buttons on a form, separated by some spacing. I am looking to be able to draw a line that connects two buttons such that it persists when the form is minimized then re-opened. I am aware that putting the line...
  15. mainit123

    Visual Basic .Net

    Thanks very much for the post. I did find that I can use the manual Setup Project without the need for the Wizard. Looks like everything that I need is there. Thanks again.
  16. mainit123

    Visual Basic .Net

    I have Visual Studio .NET Standard inside of which is Visual Basic .NET. This is from Michael Halvorsen's commercially available product, "Microsoft Visual Basic .NET Step by Step". I do not have the Setup Wizard described in Chapter 14, only the Setup Project icon. Will I still be able to...
  17. mainit123

    Toshiba Laptop rebooting during Norton Antivirus install

    Thanks for the helpful tips. Will have to try these suggestions and report back. Thanks.
  18. mainit123

    Toshiba Laptop rebooting during Norton Antivirus install

    Am installing Norton Antivirus on a Toshiba laptop and midway through the install, it simply shuts down the laptop (electrically). Does not reboot, simply powers the machine down as if a setting has been done in Power Options that tell the hard drive to shut off. However, no such setting has...
  19. mainit123

    Modem not detecting dial tone, but dial tone exists!

    I would say this call should be closed. I gave up and bought a new modem. The problem is the modem.
  20. mainit123

    Modem not detecting dial tone, but dial tone exists!

    I am running Win98SE on several PCs. One is a Dell PII 300 MHz and the other is a clone with a AMD chip running at 500 MHz. I realize these are not the newest machines but I had no trouble getting a V.90 modem from Creative installed and configured on either one. The modem responds just fine...

Part and Inventory Search

Back
Top