I have created an application in Visual Basic 2010 Express that is essentially a 'radio player'. It has half a dozen buttons and a web browser control. Each button links to an online 'listen live' radio station.
Clicking each button simply navigates the browser control to the appropriate URL. Simples!
My problem?
One particular sit...
I have a folder with several excel files that have a date field, i.e. 08-24-2010-123320564.xls. I want to be able to have some VB scripting that will simply take the files that start with todays date and merge them into one file.
08-24-2010-123320564.xls
08-24-2010-123440735.xls
08-24-2010-131450342.xls
into
08-24-2010.xl...
Good afternoon all, I am beginning my first forays into programming and have decided to begin with VB.net as I can get VS2010 professional free through MS Dreamspark program.
I have been following some basic tutorials online and am now writing a small program that runs a loop to add all the numbers together between two numbers input by ...
How can I pick out files using todays date?
I have files that have dates and times in a folder, 08-25-2010-123803654.xml, 08-25-2010-123804441.xml, 08-24-2010-123851240.xml, etc.
I want to pull out just todays entrys and when i put in my code it gives me an error.
My code is:
SourceFolder = "C:\TEST(DateTime.Now.tostring('MM-dd...
Hello,
What is the best solution (if any) for calling a vb.net web service with Java / JSP? If anyone could point me to any examples / references I would very much appreciate it.
Thanks!
...
I have a page where I would like to collect information about x number of users. I have a control where you enter in the number of users and based off of that number, I create a dynamic table with a row for each user. Each table row has textbox controls that I would like to retrieve the value from on postback. How can this be accomplish...
I'm currently working on being able to import a DLL written in Fortran into Visual Basic. I've got all the basics down, so now I'm trying to take it a step further. The title basically says it all, but I'll explain what it is I'm trying to do anyways.
For kicks and giggles, let's just assume I want to pass an object that has three doubl...
When I add my vb classes to my C# project in vs 2008 they are readily available to be used in my c# classes. But for some reason 2010 can't see them. I could be missing something simple but i couldn't make it work in the past hour. Any ideas?
...
Can anyone explain the (of Out T) component to this interface? I'm familar enough with how interfaces work. I also understand that T refers to a type... Whats going on with the Out portion.
Public Interface IPageOfItems(Of Out T)
Inherits IEnumerable(Of T)
Property PageNumber() As Integer
Property PageSize() As Integer
...
Possible Duplicate:
What are the most important functional differences between C# and VB.NET?
What are the basic difference between c# and VB.net?
...
Hi,
I made a setup file and sent to my friend for testing. In the receiving computer, setup does not run and says it is an unknown application, windows does not know how to open it.
Is there any possibility to make setup without manifest?
Thanks
Furqan
...
Hi
Can i build a setup that does not have and does not need application Manifest?
This is causing problem to setup my application on many computers.
Thanks
Furqan
...
I am very confused over a Raise Events example and using delegate as a function pointer:
I am clear with this function pointer example program below which creates a generic sort function for sorting integer arrays without changing the main sort function.
' Returns True if need to swap
Delegate Function CompareFunc(ByVal x As Integer, B...
Hi All,
I have a GridView and, using a fairly common method, I'm using a FooterRow and TemplateFields to provide the missing insert ability. So far so good.
The footer contains a TemplateField with a LinkButton to provide the postback that does the insertion. In the handler for the LinkButton's click, the Insert() method is called on...
How do declare a public variable .aspx web page that can be used in all the pages within my web application?
And/or create a Public Sub?
...
Can someone help me, how can I printscreen my screen that can be saved in gif or jpeg format
locally in VB.net
...
I am using webclient class to post some data to a web form. I would like to get the response status code of the form submission. So far I've found out how to get the status code if there is a exception
Catch wex As WebException
If TypeOf wex.Response Is HttpWebResponse Then
msgbox(DirectCast(wex.Response, HttpWebRespon...
I want to group RadioButtons, but I don't want to use the visible control GroupBox. Is there something like the Java ButtonGroup in VB.NET?
...
Hi all,
I've got a method which takes some parameters and generates some XML to be sent to an [archaic] web service.
I need to include in the XML:
Date (yyyy-mm-dd)
Opening time (hh:mm)
Closing time (hh:mm)
Now in the past when I've had to provide a date/time separately, I've taken in a single DateTime parameter and for...
I have a simple LINQ query that is going against a collection.
Dim oList = From w In Os
Order By w.ClassTitle Descending
Select w
What I'd like to be able to do though is pass into this whether it's descending or ascending. I'm not sure how to do that.
Also, if I were to have a where clause in here.. sa...