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

Software Development Network >> Visual Basic

Visual Basic

New Question

Need FileSystemWatcher Advice
Freezing Header of the Data Grid.
Error when add MS Office Document Imaging Viewer Control to a form
Sending e-mail from Vis Basic
Sammary to class
opening cd drives
Reading every XML in a folder
Reading a XML File
Fill a repeater one by one
Using GUIDS in a DB with VB6

Top Answerers

Kasper B
tim avm
NewWebTester
Tom Coudyzer
A*
Vidya Vrat Agarwal
sdanil
DMX
Sontiago
renis
Bird Flu Monitor
Only Title

Answer Questions

  • Deven Kampenhout Form Switching

    Hello all, I know this is a real n00b question, but I was wondering if someone could advise me as to a better way of doing my form switching without creating a new instance of a form each time. I know usually you can just go Dim F as new Form2 F.Show But that creates a new instance of Form2. What I'm trying to do is to have a permanently open version of Form2 that I can access at any time. The reason I want to do this is so that I can k ...Show All

  • Michael Gomez Delegates and KeyUp

    I am dynamically adding inkedits(rich textboxes for all intents and purposes) to a form and i want to capture the F2 key when the focus is on one of them and that key is hit... I wanted to do addhandler inkedits.keypress but that event only works for ascii keys. If i try inkedits.keyup the compiler is expecting a delegate object.. the examples i can find through searching the web dont really help me with the syntax.. i know i need to ...Show All

  • maxi_byte Windows Positioning on distributed software

    I noticed that when I complie an application and distribute it to my fans (My Family :) That the windows display differently depending upon the screen resolution of the client computer. Is there a property besides the center property of the form that I can use to assure that the program will look the same on all computers. A third party add-on, or something I'm over looking in the property settings of the form. Thanks in advanc ...Show All

  • Drak Swordsman My.Application.Log.WriteEntry writes double entries!

    Has anyone had the experience in VB 2005 Beta 2 that when using the FileLog listener, each time My.Application.Log.WriteEntry is called to write a message, the message actually gets written to the <appname>.log file twice The log file is stored in directory "C:\Documents and Settings\<userid>\Application Data\<company name>\<appname>\1.0.0.0" with a file name of <xxx>.log and contains entries as follows: Defa ...Show All

  • A.M Hi iv ben programing in vb5.0 and i would like to get vb6.0 can i?

    Iv ben programing in vb5.0 for about 2 years and i would like to get vb6.0 but i cant find it. And i dont like .net because: 1 it's not as ez to use. 2 it will not work on windows 98se Dose any know ware or how i can get vb6.0 Thanks Hi I don't believe you can buy VB6 anymore (retail at least). Your best bet would be something like e-bay. However, I personally would recommend that you look into .NET. It ...Show All

  • atconway [OTP] Timer control in Access

    hi all, i have created a form using microsoft access 2003. Now, i want to run this form automatically everyday at a specific time. I plan to use timer control and yet it coudn't be found in toolbox or ActiveX control. Can u pls suggest me the solution Thx in advance..   rdgs, junnies These forums are for VB.NET questions. The VB within Access is Visual Basic for Application. VBA is a very different produ ...Show All

  • Muerte33 Icon Editor in Visual Basic

    Hi there! I have a dull question. I am using the integrated symbol editor inside Visual Basic (d'oh! my Microangelo installation is on my PC at home - 400 kilometers away!). Is it possible to create windows-xp styled icons (with 8-bit-transparency) That would be cool... best greetings Jan VS2005 icon editor allows you to create Mono, 16 color and 256 color icon. To create a 256 color (8-bits), Open the icon editor -> ...Show All

  • Mohammad Aslam Khan resource generation

    I have three (VB) projects which share a couple of user controls. One project contains the actual source files whilst the others have a Link to the source. When I run the code, the resource manager fails to locate the resources for the controls when instantiated via the "Link" scenario. Investigation shows that the embedded resources have the root (filename/namespace) of the original project. Am I doing something wrong H ...Show All

  • jtw2006 SignTool reported an error 'An internal certificate chaining error has occurred.

    I am new to code signing. After I swtich from the temperary test certificate to a real certificate from a CA, when I publish, I got two errors "Error 1 Cannot publish because a project failed to build." "Error 2 SignTool reported an error 'An internal certificate chaining error has occurred. '." and when I checked "Sign the assembly", when I build, it asks for a password, after I entered password, it says "Cannot find th ...Show All

  • Spog Mog Give Me A Liitle Help Here Please.

    Hi i have recently switched from VB 2005 express edition BETA 2 to VB2005 express edition no BETA 2 or what ever that junk was about. but any whoo i get a error message saying that my designer view can not be opened because the compiler is not intact i have been unistalling and reinstalling this framwork 1.1, 2.0, and the new SQL server stuff along with the new VB and all that good stuff but it still wont work VB is my job and right now i do ...Show All

  • Pablo Cibraro Validating within a User Class

    I need to populate a container with an indeterminate number of label/textbox pairs for input. Since it is indeterminate at design time, I thought I'd create a user class with both a label and at text box in a pair so I could create them at run time and populate the labels appropriately from a data file. I need to validate each text box for numeric value. Then, I need to use that value to build up a subtotal on the form...sort of like this: ...Show All

  • bgs Making another application active

    Can anyone give me a snippet that shows how to make another Application the active one I ran into a snag with my test automation program. Everything is fine if I make it totally passive: run the Application I am testing, then run my program, and finally, make the application active again by clicking on it. When I do this, my app sends keyboard strokes to the program with no problem. But if I need to select an option later on in my te ...Show All

  • Rido Purchase Order Number Generator

    I'm designing the forms for our business, and am currently working on a Purchase Order form.  The aim is to create a form that, when opened, creates a new PO number that runs in sequence. IE: I open it one time and I have GH-0001, but next time it's opened, we have GH-0002.  I'd like to avoid anything based on date and time because those make for very long PO Numbers, and slightly weird. Any suggestions or redirections are welcome. ...Show All

  • Terry Muench Troubles with my toolstrip

    I have a toolstrip on my form and I have the form's autoscroll set to true so that when it's resize it can be scrolled if necessary. Anyway, When I scroll down my toolbar doesn't stay at the top of my form. It scroll's with my form. So, when I scroll down it disappears past the top of my form. I have dock set to top. What am I doing wrong You should add a panel to your form and set its Dock property to Fill. Now you should set the panel ...Show All

  • pdesai Mathmatical functions

    Does VB Express support mathmatical functions like sin, cos IF it does, what is syntax for using it. Yes, use the Math Static Functions like Math.Sin(....) yes they are in the system.math class http://msdn2.microsoft.com/en-us/4zfefwz9(vs.80).aspx all the mathematical functions you would normally want ...Show All

123456789101112131415161718

©2008 Software Development Network

powered by phorum