- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
VB.net newbie.
Have done some very limited stuff at University, but now I'm learning more :)
13 Posted Topics
Hi all, I'm getting a strange error every time I try to send a score update using an rpc using Photon Unity Networking (And Unity3d). Here is the Error. RPC method 'RPC_SendScore(String, Single)' found 2x on object with PhotonView 1201. Only one component should implement it.Return type must be void … | |
Hi all, I'm hoping someone can help out, or at least give me a yes or no answer and possibly point me in the right direction. What I'd like to do is control a physical on/off switch (relay?) to turn on some led's. My ideal solution would be to write … | |
Hi all, I'm hoping someone can help me out with this one as it's driving me nuts. What I'm trying to do is create a page of 'items' which are displayed as icons, and when the user hovers over one of the icons, the items information is displayed. Here's is … | |
Hi all, I'm hoping someone can help me with this as I can't for the life of me figure it out. I have a single form called 'FolderSelector' with a label, textbox and a button. The problem I'm having is that everytime I run the application, the only thing that … | |
Hi all, I'm hoping someone can help out with this one. I'm reading in an xml file, which is working fine with no problems, but I want to re-format one of the elements data attributes slightly. The XML attribute output is currently [code]Wind: NW at 6 mph[/code] What I want … | |
Hi all, Hopefully someone can help me out with this one. I have a form which gets populated by 15 buttons dynamically at runtime (these need to be dynamic as there will be a user config file at some point) What I need these buttons to do is to open … | |
Hi all, Hopefully someone can help me with this one as I've been trying to figure it out for the past several hours with no luck. The idea is to scan a folder of images and then let the user navigate back and forth through the images using a couple … | |
Hi all, Another pesky question. in vb, is it possible to open a form on a second monitor, apart from setting the forms screen position? Thanks TheMightySpud | |
Hi all, I've written the code to create a digital clock using a label and it's all working dandy. Now though, I want to take it to the next level and use images for each of the digits instead of a simple label to make the clock fit more with … | |
Hi all, I'm working on a little 'remote' project for my media center and have everything in place to start making it look pretty except for one thing. Is there a way to control windows media player (play/pause/skip/volume/seek etc) from with vb.net without having to embed the player? To give … | |
Hi all, Been a while since I've been around, and I have a question... Firstly, if this is possible, and secondly, if it is, how I'd go about doing it. The idea/problem.... I'm working on a desktop replacement project and was wondering if it possible to have a form which … | |
Hi all, I hope someone can help me with this because it's driving me insane. I've spent almost two solid days trying to figure this out without much success. What I need to do is load in an XML file (which I have working fine) but then I need to … | |
Re: Hi, I'll admit, I'm very new to VB.net, so this may be a complete waste of your time but...... [code=synyax] ListBox1.Items.Clear() Dim feedXML As XDocument = XDocument.Load("c:\mydata.xml") Dim sb as string For Each s In (From nbdresponse In feedXML.Descendants("record") _ Where (nbdresponse.Element("jurisdiction").Value() = Me.DataGridView3.CurrentCell.Value) _ Select nbdresponse.Elements("offender").Value()) ListBox1.Items.Add(sb) Next [/code] … |
The End.