Search results for query: *

  1. I

    Disabling keys for password screen

    Hey this must be an age old question but I would like to know how to disable or "catch" certain windows shortcuts. I am making my own style lock feature as a kind of project. I have the project all done apart from the fact people can just close it with Alt+F4 or just bring up the task manager...
  2. I

    Inserting Text at the cursor

    Ok I want to create some kind of function to insert text where the cursor is. Not the mouse one but the blinking one in the rtb. I tried rtb.text.insert but that wants an index number but I don't know what thats going to be because they could insert this text anywhere. Any help? Thanks...
  3. I

    Working with processes

    I am really interested in working with windows processes. I don't really know how to start. I have found System.Diagnostics.Process but do't have a clue how to use it. An example of something to do would get every unning process and put its name (ID?) into a list box. If someone could help me...
  4. I

    CHM creation?

    Ok wasn't sure where to put this but I thought people here might know. Is there anywhere I can get a freeware CHM creator. I mean a real freeware one that doesn't put a advertiment page everyone page. Any ideas? Thanks Ironfistchamp
  5. I

    Difficulties accessing rich text box

    Ok so the setup I have is that there are tab pages (with rtbs inside) created dynamically. I don't know the name of the current rtb but i need to change its properties. I used a for statement to find out if the selected tabs control was an rtb. That works for saving, opening and printing but...
  6. I

    Problems with Padding

    Hi people another problem with my tabbed program. Here we go. I have a tab control that has tabs created dynamically. It automatically starts with one tab that has a rtb (rich text box in it). I have the padding set to 3 all around it. That works fine as the rtb (dockstyle.fill) has a small bit...
  7. I

    Timeout not timer?

    I want to have a peice of code so that when a button is pressed it will wait a defined period of time before executing the rest of the code. I don't want an actual timer just something that waits, oh I dont know, 5 seconds and then executes the code. Any ideas folks? Thanks Ironfistchamp
  8. I

    Create new RichTextBox in tab page

    Hey there I would like to know how I can create a new rich text box in a tab page. I have got the code to create the new tab but its just a blank one and I would like to have a docked rich text box in there. Any help on this would be great. Thanks very much. Ironfistchamp
  9. I

    VB.NET 2005 Setup Wizard thing (like in Visual Studio)

    Is there some cool and spangly setup wizard like in Visual Studio. I want there to be some way of doing that because the Publish function is pretty naff. If there isn't one is there a way to make one? Maybe in a template or something... Any help much appreciated Ironfistchamp
  10. I

    Timer - Error 1 Handles clause requires a WithEvents (Even on MSDN example code)

    I am creating a small program that uses a timer to check a statement every 5 seconds and calls a sub if it is true. I have that bit working fine it is just that I get the error message "Error 1 Handles clause requires a WithEvents variable defined in the containing type or one of its base...
  11. I

    Open Dialog Appears again if you press cancel

    I have some code to stop my program throwing errors when you press cancel on the open and save dialog boxes. Looks like this openFD.InitialDirectory = "C:\" openFD.Filter = "Jpeg Files|*.jpg" openFD.ShowDialog() Dim DidWork As Integer = openFD.ShowDialog() If...
Back
Top