Using VB With Other Technologies Or Finding Samples/content Or Requesting New VB?
Sep 6, 2011
For those that are having problems using VB with other technologies or finding samples/content or requesting new VB Language features then there is another way to provide this feedback to Microsoft so that we can work to provide useful content.[URL]..These posts will be actively monitored by Microsoft product team members who are interested to hear from developers.
View 1 Replies
ADVERTISEMENT
Mar 6, 2010
We are in the process of creating active-x controls used within our application. Since Microsoft stopped supporting classic Visual Basic, is it wise to use Visual Basic to develop the Active X control or the latest VC++/ATL/MFC libraries provide more feature where we can create controls faster by leaving Visual Basic flexibility?
We will not be able to use .NET/VB.NET/C# since the application is supposed to work inside containers and containers may not support latest .NET runtime.
View 4 Replies
Jan 10, 2012
I want to add a control in winforms that drops like combo box but can show data like datagridview. I have seen this control in an application but not able to find a way how to do it. (Pic attached)
View 2 Replies
May 22, 2012
I am trying to get the id from a url and send it to the client side this is what I did. This is my url : [URL]
Code behind
Public Partial Class Edit
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
End Sub
Private _myId As String = Request.QueryString("id")
Public Property myId() As String
[Code] .....
Error
Request is not available in this context
This is also what I get when I move the private prop to page_load()
"private " is not valid on local variable declaration -
Here is the answer
Public Partial Class Edit
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
MyIdVal = Request.QueryString("id")
End Sub
Private _myIdVal As String
Public Property MyIdVal() As String
[Code] .....
View 3 Replies
Jan 25, 2010
I would like to check if a URL exists -- without requesting the file. The program needs to check if a PDF or Excel spreadsheet exists at a particular URL. If it does, it might want to download the file, but it should not download it every time.
I currently use the WebBrowser.Navigate method to do this, but it always downloads the file. But I don't want to actually download the .pdf or .xls file, I just want to determine if the URL exists.
View 8 Replies
Apr 4, 2009
I'm creating a VB program to run a psychology experiment and I'm pretty close to done but am running into a few problems. The experiment consists of 8 phases that display on a single form but with different stimuli (pictures and text) being displayed on the form. So for example, at the top of the form would appear "dog" and below that in the center of the screen would appear the word "cat" and then the subject would select one of two option buttons, one being on the bottom left of the screen and one being on the bottom right of the screen.
One option button is labeled "Similar" and the other is labeled "Opposite". I also have corrective feedback displayed after each choice is made. Here are the things I have not figured out
[Code]...
View 6 Replies
Aug 7, 2009
I want to make a simple application on Windows XP with a single button which says "Help" - that will launch Windows Messenger's Remote Assistance and connect to my MSN Messenger ID - this is detailed here: [URL]. This is for my Dad or Mom who sometimes get confused when the Firefox UI resets itself or something other similarly catastrophic happens. I am familiar with the Windows programming model but am unsure on how to go about it - I would like to do this in C# or even VB.net.
View 2 Replies
Sep 13, 2011
I've created an executable that's called by another app for processes that require UAC elevated privileges. If I build this project with the below manifest it requests UAC fine, if I add this projects output to my setup project it creates it without UAC?[code]....
View 1 Replies
Jun 27, 2011
First good Monday to all and thanks for the suggestions on path I got it working somewhat.Problem: When a user clicks the comment button I would like outlook client to open so they can submit their comments. We run outlook client 2010 and exchange 2010 server. The Network Administrator is somewhat helpful but I am responsible for coding. Code specifics needed, did some research but not a lot of examples. I originally designed a cute little form with pages that folks could view to answer questions about how to use office software, the boss saw it and now they want more.
View 4 Replies
May 10, 2010
How can I request permissions to use My.Computer.FileSystem.SpecialDirectories.MyDocuments for writing?
View 1 Replies
Jun 16, 2011
Today Microsoft announced the Kinnect SDK for PCnd VB Samples are there at launch.
View 1 Replies
Aug 15, 2011
I would like to develop a VB.Net based smart device app. A simple one. Do any of u know where i can refer to samples of such apps?
View 2 Replies
Feb 21, 2010
Are there scripts available for these databases? The sample databases are created with an unsupported version of SQL
View 3 Replies
Sep 16, 2010
What I'm looking for are videos in vb.net for console application that will show me how to use DataSets and TableAdapters step by step. Please provide links
View 4 Replies
Aug 12, 2009
I went to [url] and downloaded the Data Access samples but when I try to open any of the projects I get an error:
"The project you are trying to open was not created using Visual Studio Tools for Application. Visual Studio Tools for Applications cannot open projects that were not created using other applications"
View 7 Replies
Dec 2, 2009
I tried to download in VB2008 express the Visual basic 2008 samples. It dowloads a zip files under Windows/temporary internet files/ When I try to launch the sample I get the message"The project location is not trusted"and it does not load the vb files What should I do ?
View 3 Replies
Oct 28, 2009
I'm new to VB Express 2008 (but not new to VB).I'd like to look at some of the samples, which I've tried to access from the Help menu. I've downloaded a 9 MB file called VS 2008 RTM VBSamples.zip, which contains nearly 2000 files many of which have the same name (e.g., Application.Designer.vb or Form1.Designer.vb).I can extract any of these files from the zip file, but how can I know which .vb, .proj, .sln, etc files I want in order to see a full sample for, say, learning how to use Try Catch or for learning how to read a text file ?
View 2 Replies
Feb 16, 2012
I have been en-charged of creating some apps using the cloud. I only have experience programming windows apps (vb.net) Do you guys have any code samples of cloud apps in VB.NET? If not, do you know where I can find this?What about documentation for creating vb.net cloud apps?
View 3 Replies
Feb 15, 2012
just a newbie programmer here. With 1 week experience in VB2008. I'd like to ask for assistance on making one of these inventory systems concepts. I hear its one of the basic programs a newbie can make. This will be made for students financial monitoring. Like how much they should pay in an event. Of course will be needing to input student names and event names.
So I'd like to ask could you give me tips on what to do first?*Set aside the database stuff first.
Like the main window, or a sample of a form to which I could encode and update entry payments for students.Am not asking for codes here just samples of forms or softwares I could get some ideas.
View 4 Replies
Aug 1, 2011
Where I can find examples of vb.net asp.net codes?Like event calendar or any?
View 2 Replies
Oct 3, 2011
When I want to open samples from local Samples folder or online, this message show for me " One or more projects in the solution were not loaded correctly Please see the Output window for details."
View 4 Replies
Aug 31, 2011
I thought only Microsoft employees would be able to upload here? >>[URL] Why then, is the UPLOAD link enabled for me? This dialog pops up when I click on it, but I am not a Microsoft employee.
[Code]...
View 2 Replies
Oct 28, 2010
Fortran Samples for Visual Studio 2008 will not debug or run. I can't get the sample programs to run. I am a engineer not a programmer
View 2 Replies
Mar 10, 2009
Website dat have samples codes on HTTP GET/POST from a device server?
View 3 Replies
Dec 30, 2010
I have a sample app here I could use a hand with Basically I'm trying to update the TextBlock on the main page using MVVM when the content the frame updates the the property. Please find the code attached below:[URL]..How do i get the button inside the frame to change the variable and update the TextBlock on the parent control?
View 1 Replies
Jun 20, 2009
loop through a textbox control content and extract specific content from it
View 20 Replies
Nov 25, 2010
1)This is my code.. (below)what i am trying to do here is to insert username and confirmed password into a sql table called login via a pre created form.I have 1 textbox, 2 Maskedtextboxes and a button.
what i would like is if the passwords do not match in both maskedtextboxes for the system to throw out a message saying passwords do not match please try again..which then clears previous content and requires the user to enter details again. once details are correct and system commits the new user details to the table and throws up a confirmation message.
[Code]...
View 1 Replies
Sep 3, 2009
I found on msdn samples and modified (add Thread.GetDomaind.UnhandledException)
<SecurityPermission(SecurityAction.Demand, Flags:=SecurityPermissionFlag.ControlAppDomain)> _
Public Sub Main()
' Add the event handler for handling UI thread exceptions to the event.[code].....
View 1 Replies
Jul 3, 2006
Does anyone know why a Page_Load would be called twice on a page when requesting an aspx page?I am using .Net 2.0 with the new .net 1.1 compilation model installed. Whenever I request a page, the Page_Load on the aspx page appears to be called twice, so does the Page_Load on and user controls added to that page.
View 16 Replies
Jul 6, 2011
I am playing ".wav" file using AXMediaPlayer in VB.Net. The defaulttime format taken by it is in "seconds". However for some specificpurpose I have use "samples" as time format. Earlier in VB6, MMControlwas having its property and you can change it by setting its propertylike: MMControl.TimeFormat=9 (for samples)".how to change default time format from "seconds" to "samples" in AXMediaPayer in .net.
View 1 Replies