No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
14 Posted Topics
Hi, I would like to have a list of "methods" so that i can invoke them inside the list. I just don't know how to store the methods in a list.
System.Exeception: plug needed. System.Void System.Threading.Monitor.Enter(System.Object) at Cosmos.IlScanner.ScanMethod(methodBase aMethod, Bolean aIsPlug) at Cosmos.IlScanner.ScanQueue() at Cosmos.IlScanner.Execute(MethodBase aStartMethod) at Cosmos.Compiler.Builder.Builder.RunEngine(Object aParam) this is the error in the Warnings&error window i got from the cosmos Builder when trying to make an os. i have vc# 2008. along with vs2010 installed. why has this error …
Hi, [CODE]string[] SplitEquationText = EquationBox.Text.Split('');[/CODE] in that line of code, it will not let me split nothing? am i allowed to split nothing? thank you.
hello, i want to be able to split this string: "StraightPath1, 1, 2" into 3 sections: name, x, y. but when i use this code:[CODE]string[] pieces = line.Split(',')[/CODE] it only i can only read the last 2 parts like this: [CODE] string Name = pieces[0]; //output: null int X = …
can someone tell me how to convert a string to a float. [CODE](Float)"1";[/CODE] does not work.
Is there a way i can create 3D graphics in c#? is there an API out there, built into c# or would i have to make my own? here is how i can create a cube [CODE] void drawcube(Pen mypen, Rectangle rect1, int size){ Rectangle rect2 = new Rectangle(rect1.X + …
hello. I want to know how to read, write, and save databases. with control and virtually. i have seen some tutorials about databases they just don't help me. thank you
i want to make a custom tab control for my web browser but i have no clue how to do it. all I know is to set the draw mode to ownerdrawnfixed and use the paint event args but nothing else. please help, it would help with my ui. thx
you can use code and say this: [CODE]webbrowser1.ScriptErrorsSuppressed = True[/CODE] or you can go to the gui editor and go to behavior and say ScriptErrorsSuppressed = True
I like to use pop out panels that would just slide but sometimes it looks bad. is there a way i can fix it to make is as smooth as possible? here is the code i use [CODE] dim pp as new point Private Sub Form1_Load(ByVal sender As System.Object, ByVal …
hi...again...i have a problem, here it is, when i wrote my code this error came up [CODE] Public Property currentbrowser As browser Get Return cb End Get Set(ByVal value As browser.browser) cb = value End Set End Property Public Shared Sub Navigate(ByVal URL As String) cb.Navigate(URL) End Sub [/CODE] inside …
you can do this dim i as integer = 0 Public Sub Addtab() Dim browser As New webbrowser browser.Dock = DockStyle.Fill 'docking it browser.ContextMenuStrip = main.cms 'adding a context menustip to it Dim tab As New TabPage tab.Controls.Add(browser) main.Tabs.TabPages.Add(tab) 'IMPORTANT you must select the tab main.Tabs.Select(i) i += 1 End …
can someone tell me how to get the [U][B]icon[/B][/U] of a webpage. i can get the icon of a webpage and set it as an image but i want to take it and set it as the icon for my application. here is the code to get the icon and …
i need help, i am making a web browser in vb 10 and i have a built in media player and i want to make a play list. i got it to work with a listbox but not anything else. For the menustrip [CODE] Private Sub PlaylistToolStripMenuItem_DropDownItemClicked(ByVal sender As System.Object, …
The End.
choover12