Search found 2756 matches

Search found 2756 matches Page 5 of 276
by mandai
Sun Sep 29, 2013 1:32 pm
Forum: Coding Help & Support
Topic: FlowLayoutPanel
Replies: 8
Views: 1882

It is possible to do this with the FlowLayoutPanel. You would need to use the SetFlowBreak function: Private Sub btnTest_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnTest.Click For i As Integer = 1 To 4 - 1 Dim test As New Label() test.Text = i FlowLayoutPanel1.Contro...
by mandai
Sun Sep 15, 2013 2:45 pm
Forum: Work in Progress
Topic: Toxic-Productions System Information
Replies: 17
Views: 6069

The IPInterfaceStatistics class is part of .Net 4.5. You can update and see if that fixes it
by mandai
Sat Sep 14, 2013 7:40 pm
Forum: Coding Help & Support
Topic: FootNumbers
Replies: 10
Views: 2672

It is possible to understand now that you have shown you are using the PrintDocument.Print method. This sample shows how to add a page count: Dim page As Integer = 1 Sub pdoc_PrintPage(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Dim position As PointF = New PointF(...
by mandai
Sun Sep 08, 2013 2:33 pm
Forum: Coding Help & Support
Topic: LineNumbers?
Replies: 5
Views: 1608

I was able to use the above code, it seems to give me the line details. Try Throw New Exception() Catch ex As Exception Dim trace = New System.Diagnostics.StackTrace(ex, True) Dim ErrorTrack As String ErrorTrack = "On Line Number: " & trace.GetFrame(0).GetFileLineNumber() & vbCrLf ...
by mandai
Sat Aug 31, 2013 1:35 pm
Forum: Coding Help & Support
Topic: JsonAPI (not sure were to post soz)
Replies: 7
Views: 2111

It seems JSON is used by that Bukkit plugin. I am not familiar with Bukkit, however it looks like there is a sample and documentation to show the use of the broadcastWithName function: http://alecgorge.com/minecraft/jsonapi/apidocs/#this.chatWithName%280%2C%201%29 https://github.com/alecgorge/jsonap...
by mandai
Sun Aug 18, 2013 2:18 pm
Forum: Source-Code
Topic: Video Chat
Replies: 11
Views: 4417

If this needs both video and chat I would need some kind of protocol design/specification before I can give an example.
Another option would be to make use of existing network video/chat libraries. A search for '.net video conferencing' gives a lot of results.
by mandai
Sun Aug 18, 2013 12:39 am
Forum: Source-Code
Topic: Video Chat
Replies: 11
Views: 4417

In simple terms the UdpClient should work with both LAN and internet addresses in the same way. It is also worth mentioning if the user has a router they will need to allow port forwarding for the receiving server.
by mandai
Sat Aug 17, 2013 3:28 pm
Forum: Coding Help & Support
Topic: Need Help!
Replies: 12
Views: 3340

It is still possible to automate the login even if the element does not have an id attribute. You would need to rely on GetElementsByTagName and search through the results until you reach the correct element.
The source code for this would be specific to the design of the web page.
by mandai
Sat Aug 17, 2013 3:14 pm
Forum: Source-Code
Topic: Video Chat
Replies: 11
Views: 4417

It should be possible to use this over the internet, though you would need to add data buffering and a way to check for lost frames.
It makes sense to use UDP if you need real-time streaming.

It seems the chat feature fills my screen with error messages.
by mandai
Wed Jul 24, 2013 1:14 am
Forum: General Help
Topic: Failing Hard Disk
Replies: 22
Views: 8529

By formatting the drive you are actually clearing any list of bad sectors (the $BadClus file) that chkdsk maintains. It doesn't help the stability of the system if the OS keeps trying to use these areas again. It would make sense to run a full disk check (chkdsk /r) to try and map out all the bad se...
Search found 2756 matches Page 5 of 276
Go to advanced search