CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Tomski

Page 1 of 2 1 2

Search: Search took 0.34 seconds.

  1. Re: How to Start Application from Windows Service

    every app you start is a process and will therefore be visible in the task manager. You cannot prevent an app from showing in the task manager
  2. Replies
    4
    Views
    52,829

    Re: How use the Sendkey in .net

    There is a version of sendkeys in windows.forms. but it all depends if you want to send it to your form or to another application
  3. Replies
    3
    Views
    668

    Re: find no of characters

    You could also use: var.Length - var.Replace("-", "").Length

    In any case the ToUpper is not doing anything in the code you describe. ToUpper casts the string to uppercase, just like UCase(string)...
  4. Replies
    3
    Views
    515

    Re: Create / Read 70+ checkboxes

    Sounds like you need to be doing this in asp, not vb.

    But if you want to read all checkboxes on a form you can use something like:




    Private CheckBoxCollection As New Collection()

    ...
  5. Re: Where is my InstallShield Menu (Templates) ???

    As far as I know you cannot open Installshield projects in a normal Visual Studio.NET installation. .NET now has it's own installer software. You can however have Installshield developer on your...
  6. Replies
    3
    Views
    515

    Re: Create / Read 70+ checkboxes

    Why? What are you trying to do? It looks like you're trying to use a very unorthodox method for something that should be much easier.
  7. Replies
    1
    Views
    618

    Re: Create Table Script

    As far as I know VS.Net and Access do not have the "generate script" option. SQL-server does however. Check SQL server books online on the micrsoft website. Just look for "books online" in the...
  8. Replies
    3
    Views
    610

    Re: Textbox alignment problem

    Use the Trim command to get rid of the extra spaces. I always do this when getting Database info into my app. Don't edit your DB settings, always make client side corrections in these cases.
  9. Thread: remove focus

    by Tomski
    Replies
    1
    Views
    5,738

    Re: remove focus

    Check your Taborder. "View -> Tab Order" on the main menu. A 0 on the object indicates the first in the order.
  10. Replies
    7
    Views
    4,824

    Re: Internet Explorer Document

    Yes the HWND of the IE object is read only because this is the reference to the window that has been opened.

    What you need to do is get the handle for the window that has been opened with either...
  11. Replies
    7
    Views
    4,824

    Re: Internet Explorer Document

    If you're using SHdocVW.InternetExplorer

    Then you can use IE.Document.Body.InnerHTML (string) to view the source of the internet page.

    You should use the handle of the window as a reference....
  12. Replies
    7
    Views
    4,824

    Re: Internet Explorer Document

    Either create a systemhook that sends a message to your event handler or you can just use a timer object with a set interval to check if a browser window is active.
  13. Replies
    2
    Views
    471

    Re: Help in coding a VB.net project ?????

    Maybe you could post what you need help with. Like telling us what it is you need your program to do, then we could steer you in the right direction.

    Otherwise my advise would be, buy a vb.net...
  14. Replies
    3
    Views
    3,778

    Re: Reading a random line from a text file

    I'm not sure what you mean by random line. If you really mean random line then you can tell your app to skip a randomized number of lines, then read it into a string vlaue and assign it to the...
  15. Replies
    2
    Views
    450

    Re: Renaming/Replicating win forms

    When having duplicate forms in your project you will need to change 2 things.
    1. The name of the form
    2. The name of the class

    After this is done you're all set.
  16. Replies
    10
    Views
    3,733

    Re: Catching CTRL ALT DEL

    As a workaround (might sound lame) you can create a second exe that checks the first one.

    You might want to be looking into threading and system hooks.
  17. Replies
    10
    Views
    3,733

    Re: Catching CTRL ALT DEL

    On the title of this post. You CAN catch the user using ctr-alt-del. Your program can stop ctrl-alt-del from showing the taskmenu altogether. that might not be what you want, but catching...
  18. Thread: need help

    by Tomski
    Replies
    2
    Views
    531

    Re: need help

    You could also make a class with the properties StateName and Abbreviation and put them into a collection. then you can search the collection for the abbreviation and get the name of the state.
    ...
  19. Thread: Key Mapping

    by Tomski
    Replies
    2
    Views
    502

    Re: Key Mapping

    Sounds to me like you need a KeyboardHook, lowlevel programming. Pretty complicated so make sure there is no other way to facilitate this. I got the code for that, though I'm not sure it is what...
  20. Replies
    7
    Views
    915

    Re: displaying information in web pages

    hmmm, I did not know that. Thanks for pointing it out.

    On topic, I'm not sure really how to trigger the event. I have not much experience with webforms, but like you say it should be possible and...
  21. Re: how to call up inherited form from main form?

    Try this: considering your inherited form is named frmInherited



    Private Sub ForexMenu_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ForexMenu.Click

    Dim...
  22. Replies
    2
    Views
    576

    Re: Access to MYSQL migration tools

    Yes there are. Here's a few. I tried one of them myself at one time, don't remember which, but I guess they all do basically the same thing.

    MdbToMySQL XP
    Navicat
    Access2MySQL Sync
  23. Re: Can I set my form so it is ALWAYS in focus?

    There is no way in win98 or higher to set the focus to an application unless you do vast amount of programming for it. I have tried and failed to achieve this in the past. Look on the microsoft...
  24. Replies
    7
    Views
    915

    Re: displaying information in web pages

    When building webapplications you must understand that the code that is used by the webpage is only serverside. A messagebox would therefore be given to the server instead of the client. Javascript...
  25. Replies
    1
    Views
    1,011

    Re: report GROUPING at runtime

    looks like you're trying to set a string variable to an object. Don't know much about the objects you're using, but there might be something that needs to come after:...
Results 1 to 25 of 31
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured