Search results for query: *

  1. oriax123

    Question Visual studio c++ to vb2010?

    I found a c# version of the CEF and converted to vbnet, the cefwebbrowser was added to the form but i have no clue how to have it navigate as its different that other browsers ive used before. for example on other browsers itll be like webkitbrowser1.navigate("http://www.google.com") ' or...
  2. oriax123

    Question Visual studio c++ to vb2010?

    Is there a way to use or convert a visual studio c++ project to be used in visual basic express 2010? I wanted to play with Chromium Embedded Framework aka CEF but its for vsc++.
  3. oriax123

    TabControl help :/

    Im using dotnetbar for the tabs and its abit different than the tabcontrol that comes with vb. ive tried: dim newtab as new browser 'as browser is the usercontrol.vb tabcontrol1.controls.add(newtab) 'this gives me an error saying a form cant go in a tabitem and what not...
  4. oriax123

    TabControl help :/

    Ok i got the usercontrol set up already, when i try : Form1_Load 'Adds tab to Tabcontrol1 Dim newtab As New browser newtab.Text = "New Page" newtab.Dock = DockStyle.Fill TabControl1.Controls.Add(newtab) browser is the UserControl i made. It does...
  5. oriax123

    TabControl help :/

    -_- looks confusing.... thanks btw
  6. oriax123

    TabControl help :/

    Im sorry for the noob question as i never tried that but can you describe what a usercontrol is and how i could use it in this case?
  7. oriax123

    TabControl help :/

    The SearchForm is a form with borderstyle set to none and it has like the toolbar, textbox to search, buttons, webkitbrowser ect. Im trying to do this How To Make A Tabbed Web Browser In Visual Basic 2008 2010 VB - YouTube but with a different TabControl. Im trying to make a webBrowser like...
  8. oriax123

    TabControl help :/

    First off i want to say sorry if this is the wrong section. Ive been trying to get any tabcontrol to work with the browser im making, (ive searched for several days and tried alternate methods with no dice) Where im trying to open a form into a tab (Ive tried QTabControl, MdiTabControl...
Back
Top