Software Development Network Logo
  • Architecture
  • Smart Device
  • VS Express Editions
  • .NET Development
  • Visual FoxPro
  • Visual C#
  • Visual J#
  • SQL Server
  • Microsoft ISV
  • Visual Studio
  • Windows Live
  • VS Team System
  • Game Technologies
  • Windows Forms
  • Visual Basic

Software Development Network >> Visual Basic

Visual Basic

New Question

Countdown timer help
Visual Basic and Visual c++ install doesnt work!!!!
Add data record to DataBase (VB2005, SQL Server 2005)
Exe will not run on network drive
simply play music (midi, wav ect...)
Including data files in "Click Once" deployment
vb, access, multiuser passwords
Upgrading from VB6 to VB.NET 2005 Beta 2
path does not exist or is not a directory
Programming to Physical Comptuer

Top Answerers

km5gn
Ashok Kumar Roy
Makemagic
NUMBSCULL
DenisSheshko
aande2003
NewToVB
anderskj1
DGretlein
Cached
RSS Generator
Only Title

Answer Questions

  • Hennesey Vb.net 2005 compiles in Crystal Reports?

    With the new VB.net 2005, are the crystal Reports that are created in the IDE, stored within the  compiled application EXE We would actually like to be able to not have it in the compile exe, but however in a folder we choose to save it too.  How can I save a newly created crystal Report in it's own special folder   I did not see a way to place it in a path other then the projects. thanks, Dean ...Show All

  • satyarup Siddhanta How to read and write to a file Asynchronously

    Can anyone shed any examples on how to read/write to a file Asynchronously I'm trying to understand the concept. Textfile first and maybe binary next.... or link me to a example page, please and thank you. http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfSystemIOFileStreamClassctorTopic.asp ...Show All

  • athena TV Capture

    i'm trying to create an application that calls or access my tv capture card (a VB TV application) although im still a novice. Any poiners Never heard of it. What samples here is one of them samples i was referring to before with vidcontrol in it. i don't know if its a class or not. Private Sub Command1_Click() Dim objTuneRequest As IChannelTuneRequest Dim objTuneSpace As ITuningSp ...Show All

  • Tom Lake Arrays

    Hi all, I'll try to explain what I want to do. I'm starting to learn about arrays and I'm trying (and failing all day) to be able to create a list in a dropdown menu of filmtypes: "Comedy" "Thriller etc. When I select one of them "Comedy" for example I want that to appear in the list below. I've attached the code I've written so far: hope someone can help. thanks, Chris Private Sub Form1_Load( ByVal sender As System.Object, ByVal e ...Show All

  • cm6043 Can't Run Inside IDE

    Hi I am an ABSOLUTE beginner with VB 2005 Express edition. My problem is I cannot run even the simplest Hello World application within then IDE when I hit F5 on my XP (SP-2) system. I have even plugged in the correct code supplied by Microsift and no application will run. Generally, the form appears for a very brief second, and then disappears and I am back to design view. I can't get the application to remain on the screen Everything runs ...Show All

  • tq00rrha How to protect Access 2000 Database by password and re-open through VB6 my application

    I need , How to protect Access 2000 Database by password  and re-open through VB6   Help would be much appreciated Hi, For VB6 questions, please try the newsgroups as specified in this post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=138342&SiteID=1 . Best regards, ...Show All

  • Jon_H Launching a Precess from Ram

    Starting a process requires a file path to a disk location.  I would prefer to not create temporary files on client computers for a number of reasons.  Can love or money buy a way to start a process from memory with the data file represented as a byte array or a memorystream.   Thanks, Fred Herring Theoretically speaking it is possible. All you really need to do is know the address of the executable and launch a threa ...Show All

  • Robert_Frei ODBC connection question

    Hopefully this is an easy question, but I am trying to run a query that is returning a fairly large amount of data from an AS400. I am now getting an error "Estimated query processing time 186 exceeds limit 30". It is a SELECT DISTINCT statement. When I remove the "DISTINCT", the query runs fine. Where do I need to go to set the processing time Thanks for the information. Hi, Did you ...Show All

  • Antigen VB 2005 Express Edition Templates

    Hi, I've just download the visual basic and C# 2005 express edition, but when I try to start a new project, nothing appear in the templates. This way I can't do nothing! I'm new at this, can please someone give me a help It will be very appreciated. Thanks, Joao   Don't look in templates... look in Windows Applications ...Show All

  • DanielMac Totalling the hours of a column

    I am using vb.net express and fairly new to database programming. In my program, one of the columns shows the hours worked for each employee. How do I show in a datagridview control the total of all the hours in the column mentioned above. I tried using the following sql command but it doesn't work for me Select EmployeeID,LastName,FirstName,SUM(HoursWorked) AS TotalHours From Employees       ...Show All

  • Guru_Fordy How to gracefully end a VB2005 program

    I'm in the debug stages of my first VB2005 app.  I added an exit button.  I click the button, the app continues to run. hmmm The Exit Button Logic was simply On_Click End I was in a loop, so I decided to set a boolean variable called Exit_Button_Pressed Then I check for it's status in the middle of the loop: If Exit_Key_Pressed = True Then    Me .Close()    End End If The only way ...Show All

  • Rob Sherrard Visual Basic Visual Studio 2005 Debug.Write doesn't work

    I recently purchased Visual Studio 2005, and am trying to learn Visual Basic .net via an on-line class. Most of the less on s are very simple short programs to write messages to the Debug Output Window. For example: Public Class Form1 Private Sub Form1_MouseMove( ByVal sender As Object , ByVal e _ As System.Windows.Forms.MouseEventArgs) Debug.WriteLine(e.X & "," & e.Y & " " ) E ...Show All

  • Corgalore Problem with form and the window designer.

    Hi, I have a project who have some forms. The first one is named form1 as usual. But, I do have a problem. In my solution explorer, I don't see the Form1 (Design). I only see it's code, not it's design (in the designer) so I can't modify it's controls. What is weird, when I try to add this form to my existing project, it imports without any error and it compile exactly how it's supposed to be. Here's the structure of my project : For ...Show All

  • David Paynter Functions not writing out new txt files

    The console pops up for like one second.  I am not finding any new txt files being written to the destinatin directory...and not sure why.  When I try to debug, it doesn't seem to stop at any of my set points..just the console pops up so quick that I can't see it. Imports System.IO   Module Module1       Sub Main ()           Dim parser As New ...Show All

  • fastdev Cannot update table

    Hi, When using the code Try     Me .Validate()     Me .CustomersBindingSource.EndEdit()     Me .CustomersTableAdapter.Update( Me .NorthwindDataSet.Customers)     MsgBox("Update successful") Catch ex As Exception     MsgBox("Update failed") End Try   in the walkthrough given in http://msdn2.microsoft.com/en-us/library/0f92s97z.aspx , changes were not ...Show All

828384858687888990919293949596979899

©2008 Software Development Network

powered by phorum