April 12th, 2013 07:29 AM
Hey all i have the following **VB.net** code to find elements within a JSON response:
Dim url As String =...
January 13th, 2013 07:49 PM
Solved:
Dim times As String() = lblSongTime.Text.Split("/"c)
Dim elapsedTime As TimeSpan = TimeSpan.ParseExact(times(0).Trim(), "m\:ss", Nothing)
Dim totalTime As TimeSpan =...
January 13th, 2013 06:09 PM
Hey all i have a song playing that displays the time like so:
0:00 / 4:47
The first time is the tracks current time. The second is the total track time of that song playing.
I split it like...
August 15th, 2012 10:34 PM
Hey all i am trying to find (or come up) with some code that would allow me to decode the following string:
...
January 11th, 2012 07:49 PM
Got it:
Private theQNum As Integer
Sub Start
theQNum =0
SetupNextQuestion
End Sub
January 11th, 2012 05:34 PM
I took out most of the IF ELSE since it asks questions like if txtnumber.text = "" then... etc etc out of the code posted since it would have made it longer. I only have the If else because i check...
January 11th, 2012 03:15 AM
Hey all i am having a hard time coming up with the correct flow for a question form. Lets say i have 6 questions. I define them like this:
Dim firstStart As Boolean = True
Dim...
October 20th, 2011 05:53 PM
How would you do that in hyper terminal since windows 7 does not come with it?
David
October 20th, 2011 01:35 PM
That's true but like I said the code works but doesn't turn on the correct ports.
David
October 20th, 2011 11:51 AM
I am trying to get my 4 port USB relay board to work in VB.net using the COM PORT. I found some code from a poster who has the 16 port USB relay version. When trying his code i can only get it to...
August 8th, 2011 04:31 PM
Had to do this:
public static string cableOrSat = "CABLE";
David
August 8th, 2011 04:15 PM
I am trying to set/read a variable in class bluRemote from another namespace/class like so:
namespace BluMote
{
class bluRemote
{
public string cableOrSat = "CABLE";
...
March 31st, 2011 09:05 AM
Alright, thanks. I'll look into it. :)
David
March 31st, 2011 08:18 AM
Yes, and i will do that once i get the code correct :o)
I've even emailed the guy letting him know.
David
March 31st, 2011 08:04 AM
Umm.... im a user of it?
David
March 31st, 2011 07:33 AM
Hey all. i have a script running to collect a websites HTML and parse it enough to make the outcome look like this:
<div class="title_box_art">
<a href="/titles/164197"...
December 29th, 2010 09:21 PM
Hey all, i am trying to send a keybd_event function to a media center window using the code below:
Private Const VK_DOWN = &H28
Private Const KEYEVENTF_KEYUP = &H2
theForm =...
November 21st, 2010 07:39 PM
Well for some reason i got it to work finally. I guess i needed to turn the unit on first then control it there after.
Thanks!
November 20th, 2010 10:40 PM
Hey all, i am trying to turn on a A/V Reciever with a RS232 command using the VB6 comm32. To turn it on it says to use:
Command code | Parameter code | CR | Code set example
PW |...
October 23rd, 2010 12:47 AM
Hey all, i am trying to grab some text input from notepad thats within a VMWare virtual machine running Windows 7. I can get a handle of the VMWare form but nothing within it (the windows 7 OS...
October 11th, 2010 08:13 AM
Hey all, i am trying to figure out how to go about finding this window's label when the control name is the same as all the other labels on the program.
WindowsForms10.STATIC.app.0.378734a...
October 8th, 2010 08:27 AM
Hey all i am looking to decrypt my HEX code file for an ATTiny chip and programming it using the AVRDude command line interface. Problem being, i do not want the user to be able to see what the HEX...