Search results for query: *

  1. U

    CodeWiki - Ideas and feedback?

    Hey all! Hope this doesnt violate the forum rules (if it does, just delete it).. However, me and a few others are forming up to develop a wiki-based programming website, codenamed CodeWiki. The idea is to gather as much information in one place as possible, and the wiki concept allows us to do...
  2. U

    OneClick Installer exludes localization of my program

    Well, this one is kinda weird! Ive made a small program, localized in English (US) and Norwegian (Bokmål). When debugging and so on, this works perfectly, however, when ive published it through oneclick and install it, the localization doesnt work, and is always default. Meaning i cant use the...
  3. U

    [2005] MSwebDVD

    Well, im working on a DVD player using the MSwebDVD component. However, i have a problem when it comes to the mousecursor.. I want it to be visible during the first 3-5 seconds in Fullscreen mode, however, its not working.. When dvd.fullscreen = True, the cursor dissapares.. even thought...
  4. U

    webbrowser: Url-bar + enter = navigate?

    Again, thanks for replies, but i think there is something wrong with my code somewhere else. I tried creating a new form and just tested it with a textbox and it worked. But for some reason it doesnt with my "real" form. Every other key works, but not enter (13). Cheers!
  5. U

    webbrowser: Url-bar + enter = navigate?

    EDIT: also, i tried with If e.KeyChar = Microsoft.VisualBasic.ChrW(Keys.Enter) Then and still nothing happened.. It may be worth noting that it isnt a textbox, but it is a ComboBox, does that make any difference? EDIT2: this is just really strange, when i switched out 13 (enter) for 8...
  6. U

    webbrowser: Url-bar + enter = navigate?

    Thats what i get when i use If e.KeyChar = Keys.Enter Then Have I done anything wrong? :)
  7. U

    webbrowser: Url-bar + enter = navigate?

    Well, im working on a webbrowser but ive run into a peculiar thing... Im trying to make it so that when you type in a address an hit enter, you will navigate to that address (I have a button that does this, but want to have both options).. So far I have Private Sub Text_KeyPress(ByVal...
  8. U

    Tabcontrol1.SelectedTab close?

    i tried that too, but i think im just totally stupid, because TabControl1.SelectedTab.Hide() just results in the contents of the tabpage to be hidden, not the tabpage itself.. (including the tabpage button).. Care to shed some light? Cheers!
  9. U

    Tabcontrol1.SelectedTab close?

    Im trying to figure out how to close an active tab but cant really figure it out.. Also, i am wondering how I can assign a context menu to the Tab-buttons only, not the whole tabcontrol? Cheers!
  10. U

    Private Sub ActiveBrowser_Navigating

    Love you! I just removed what you said and now its working! Owe you one! :)
  11. U

    Private Sub ActiveBrowser_Navigating

    Well, im making a tabbed webbrowser (turns out to be much harder then I thought), and i have the basic features done, but now im trying to set the Browser.navigating and navigated events, and its kinda hard. Here are some relevant code: Dim Browsercollection As New ArrayList Example...
Back
Top