Software Development Network Logo
  • Visual FoxPro
  • Smart Devicet
  • Game Technologies
  • IE Development
  • Windows Vista
  • VS Team System
  • .NET Development
  • Windows Forms
  • Visual Basic
  • Audio and Video
  • Visual C#
  • SQL Server
  • Microsoft ISV
  • SharePoint Products
  • Visual Studio

Software Development Network >> Visual Basic

Visual Basic

New Question

What is the (VK)output Code value for Windows Vista key and all the rest keys that not listedt???
how to insert(add) image into access database from vb
It takes so long to verify before installing a VB published program!
Please suggest me a MS.IT level project to undertake in my college (inhouse project)
Redirecting Processes's StandardOutput! Need a help here.
Web Browser project
How do i insert several records into SQLserver (2005)?
Data Searching/Copying
mapping an onClick event to runtime created menu item
Tracking user controls - very simple, I'm sure

Top Answerers

R.Tutus
Mortsdeh
Joel_F
Dave-g-o
Joel Martinez
chronozphere
Dave21
Eddie Garcia
bru
ICW
Topix: The Rolling Stones
Only Title

Answer Questions

  • jdn How to find info about your computers hardware

    How do you find out information about your computers hardware I am particularly interested in knowing processor type and speed, weather it is dual core or not, the type of and amount of installed RAM, and the graphics information such as graphics memory and they type of card used. Thanks This page should get you most/all of the information you need, or at least get you started: http://www.freevbcode.com/ShowCode.asp ID=4571 If you want to just get the info for your own PC, then type in msinfo32 in the run box. If you are trying to get it by code, you could use the my.computer object, or WMI, or windows API calls. ...Show All

  • JoseEjecutin Program doesn't terminate

    Hi, i'm doing a program but i found something that isn't supposed to happen... When i click in the X to terminate the program instead of going to the menu the program closes but the task stays active... it only stops when i kill the task... someone knows why this happens Was this a upgraded application from a previous version of VB If you look in My Project -> Applications -> Shutdown Mode. I guessing you're calling Application.DoEvents. I'll explain more if I'm on the right track... HI, I remember in my VB6 days when this used to happen. It is caused by some forms that I haven't closed but hidden. It seems that no other forms is running hence creating the impression that ...Show All

  • AlexBB Zed Graph - Simple Clear question

    Hi, Has anybody used Zedgraph if so can you tell me if there is a clear graph function, as i am allowing the user to add up to 4 curves and would like to have a clear button to empty the chart so the user can add 4 different charts. Many Thanks, Andy Note: - you can find the zed graph homepage at http://zedgraph.org/wiki/ or just google search zed graph – The page seems to be down at the moment though You will have better luck asking a question about a third party control at the 3rd parties web site.... http://zedgraph.org ...Show All

  • bluexx Values from XPathDocument

    Hi I am working on a managed stored proc and came across a situation where I am lacking basics. I want to be able to pass an xml-content as string and then get all the values of child elements of VoucherLine and store them into any variables. example a = AccountID b = NetAmount .... Imports System.Xml Imports System.Xml.XPath Module Module1 Sub Main() GetValues( "<VoucherDetails><Lines><VoucherLine><AccountID>3e58a9f2-565b-4d49-b9fe-9d0d95ab9041</AccountID><LineText>Details</LineText><NetAmount>4.00</NetAmount><TaxValue>20</TaxValue><PrivateLine>false</PrivateLine></VoucherLine></Lines></Vou ...Show All

  • ble0t Math Questions. Just do this instead, it's easier....

    This is my code I'm working with. I'm trying to use the sum from the lhGal to show in lhGal2.Text. Dim FirstNum, SecondNum, ThirdNum, FourthNum As Double 'Intial Fuel Add FirstNum = lhPounds.Text SecondNum = lhDensity.Text ThirdNum = lhGal.Text FourthNum = lhPounds2.Text lhGal.Text = FirstNum / SecondNum - 0.4 'Additional Fuel Added to bring to 1200 lhGal2.Text= FourthNum / SecondNum - lhGal   ReneeC wrote: The explicit casting is additional code and it's inevitable that it will slow the code down. The compiler is going to make the cast implicitly anyway, so I doubt there's much if any performance penalty.  Either way, we can certainly ...Show All

  • perf101 Synchronizing DataGridView and Outside ComboBox

    I have the controls on my form display the values of the currently selected row of the DataGridView. I am binding my DataGridView to a collection (Collection - which implements IBindingList Interface). I am binding DataGridViewTextBoxColumn to the property of the objects in my collection. I have a combobox that should display a choice of ranges. Initiallly combobox should be bound to a different datatable from a look up table. How do I wire up the DataGridView/comboBox so that as the user moves through the records in the DataGridView that the comboBox will display the proper value for each row Maybe this will help Imports System.Data.SqlClient Public Class Form1 Private Sub Form1_Load(ByVal ...Show All

  • LeoXue integer to textBox question

    I am having a problem with this sorting application. it consist of 3 textBoxes and a displayButton,nothing fancy. Here is the code i have so far Public Class Form1 Dim aInteger, bInteger, cInteger, hInteger As Integer Private Sub goButton_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles goButton.Click 'alphabetize the Input of the textbox aInteger = Integer .Parse( Me .firstTextBox.Text) bInteger = Integer .Parse( Me .secondTextBox.Text) cInteger = Integer .Parse( Me .thirdTextBox.Text) If firstTextBox.Text.ToLower > secondTextBox.Text.ToLower Then hInteger = aInteger aInteger = bInteger bInteger = hInteger ElseIf secondTextBox.Text.ToLower &g ...Show All

  • CScs Web browser help!!

    how do I make a STOP button for my web browser and how do I make a refresh button for my web browser Do you mean that you're writing a wrapper for an IE control in VB.NET ...Show All

  • Tdah Handling Repeated Arrow Keys

    I was amazed to read that noncharacter (eg. arrow) keys do not raise the KeyPress event in VB2005! I am developing a program where I want to capture, say, repeated down arrows key presses ... where the user holds down the DownArrow key for a few seconds and the program captures them all [the program has an overflow feature in the event the key is held down too long]. Am I correct in reading that this is not possible in VB2005 Surely not. Thanks. Oops ... I didn't make myself clear. I want to allow the user to hit the down arrow key and hold it down and as those repeated down-arrow characters come in I want an event handler to "capture" them. I have a stack mechanism where if the cha ...Show All

  • D. Rudd Register .NEt DLL

    Hi, I have a vb6 outlook COm project which I have recently converted to .NET. In vb6 i would test the addin within outlook bu simply registering a newly built dll file. However in vb.net when attempting to register the dll i get the following message: "dll was loaded, but the dll register server entry point was not found - the file can not be registered." Thanks in advance. Use RegAsm.exe to register a .Net dll thanks, I have seen lots of info on this but im not sure where / how to actually do it!, with a dll name od myAddin.dll could you explain exactly how to do it many thanks, Dave There's a typo in the ...Show All

  • Andrew Raymond Reading formulas from excel using VB

    Hi, i want to read formulas written in cells of excel worksheets using VBscript. i am able to read all the values of each cells, and calculated values of the formulas in the cell but not the formula. can any one help me out in this regard. vikas Instead of reading range("A1").Value Dim MyFormula as string = xlWorksheetObject.Range("A1").Formula ...Show All

  • charret accessing dataset fields

    Hi, I can not get this for the life of me. I want to get a list (array) of all the values in a certain column in a dataset, how can I go about doing this Also, what is the format for getting the value in a certain field from a dataset Like "Row x, Column y" where x and y are specified by a unique row value and unique column name. If you know of a good tutorial for Visual Basic & using SQL (Binding sources, datasets, etc), please let me know as I think I'm having a more difficult time grasping it than other aspects. Thanks! Datasets are collections of tables. Dim ds As New DataSet ds.Tables.Add(Table) Dim c As String = ds.Tables( "foo" ).Row ...Show All

  • Max Diamond Classic triangle program

      Could you help me write a program that requests an odd number, and display a triangle similar the image with the input number of stars in the top row. The computation should be carried out in a Sub procedure. ~output at the listbox~ THX~~~~ its interesting how there was another question about this yesterday.... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=967654&SiteID=1 with that you simply show an InputBox when they press the button and take that value (check they entered a valid integer value) and place it in the "totalStars" variable from the code above Perhaps the reason for the assignment is to see if you can achieve the result - not simply ...Show All

  • Snickel65 Object oriented issue puzzles me

    I have a project with a form and 2 classes: Form1, clsAcad.vb and clsAcadPlot.vb I'm trying to keep all my objects in the classes but most methods of these classes use the same objects. This forces me to initialize same objects in both classes, then apply methods on them. So, using code in Form1 I'd have to make sure I pass the same document names to variables in both classes before using them. Can I retrieve the object from the class to the Form1 and pass it to the other class I guess not, that would be a violation of the encapsulation concept. I could combine the 2 classes in 1 In this case I'll have a large class with many methods useless in other projects. Should I use inheritance Is there an easier way of doing this ...Show All

  • Ed Glas - MSFT Timer within Windows Service not working

    Hi world, I have been working on a very simple windows service, that has a timer and every time it ticks it is supossed to add a line to a text file. After I installed the service and I run it, It adds a line in the onStart ()and in the onStop() methods, but it doesn't do anything when it ticks. Please, could somebody help me Thanks !!!! Imports System.ServiceProcess Imports System.Diagnostics Imports System.IO Public Class AutoRebootService2 Protected Overrides Sub OnStart( ByVal args() As String ) ' Add code here to start your service. This method should set things ' in motion so your service can do its work. Timer1.Interval = 1000 Timer1.Enabled = True archivoLog( " ...Show All

67891011121314151617181920212223

©2008 Software Development Network

powered by phorum