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

Software Development Network >> Visual Basic

Visual Basic

New Question

Number Only Input
How can I do crystal report with dosmode(textmode) printout?
Populating Combobox with distinct data from a datasource
Vb.Net Help
basic Web browser problem
Inheritance/user control problem
Reflector does not install on Visual Basic 2005 Express Edition Beta 2
Use generic form parameter to open specific form & create new instance.
Performance:: Array(), ListBox and Class
Visual basic with .NET framework off of a CD?

Top Answerers

BNick
abrang
Galher
beezleinc
Sanjeet Sachan
Doug Gerlach
Jeff Leite
Les06291979
Sanjay More - webwaretech
peter_griffin
Peter Aitken's Visual
Only Title

Answer Questions

  • tongueless Antialiasing

    Does anybody knows the code to 'Smooth lines' Can anyone explain the pros and cons of 'Drawing2D.SmoothingMode.AntiAlias' and 'Drawing2D.SmoothingMode.HighQuality' Is one 'better' or 'quicker' than the other tia, boops Graphics.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias ...Show All

  • Gshep Need to clip pictures in VB.NET

    I am trying to make a program that can spilt characters from a antibot image into their own files. The antibot images is made like this: [6px nothing, 6px character, 1px nothing, 6px sharacter, 1px nothing, 6px charater], i thing you got the idea. Example picture: I tried to modify the code found here:  http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=373322&SiteID=1 but i didnt manage to make it work. Ill be ...Show All

  • Ralf P. ClickOnce reference updates

    I've spent some time becoming familiar with ClickOnce and think I understand how it works for forms applications. My primary question regards a reusable library that many apps consume.  If this library is versioned, a consuming ClickOnce deployed app does not appear as requiring an update.  What is needed to make that happen   If an update is published to the app, will new references be deployed If I understand correctly, th ...Show All

  • Daikoku VB 8 or VB.NET 2.0

    Just a quick question about what people are calling the new version of Visual Basic.  Around the office we call it VB 8 and regard VB.NET as the worlds worst marketing decision.  So how come Visual Basic was the only microsoft product that didn't ditch the .NET tag   Was it just to confuse us when searching google for code When the .NET framework first came out every microsoft product got tagged with .NET.  There was W ...Show All

  • Vikh problem with visual studio 2005 and thread

    hi all i have this project http://www.occasioneimmobileroma.it/THREAD.zip with visual studio 2005 i want modify the scrollbar with 2 sub, and 2 thread, how i can modify this project , for modify the scrollbar from 2 sub , and with the same thread and how i can determine when the first thread has finisced for start a second thread thanks ...Show All

  • Adrian Russell Need to clip pictures in VB.NET

    I am trying to make a program that can spilt characters from a antibot image into their own files. The antibot images is made like this: [6px nothing, 6px character, 1px nothing, 6px sharacter, 1px nothing, 6px charater], i thing you got the idea. Example picture: I tried to modify the code found here:  http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=373322&SiteID=1 but i didnt manage to make it work. Ill be ...Show All

  • Dennis Cheng.MSFT How to use Crystal Report Controls?

    Can somebody help me on how I can use the Crystal report viewer control and Crystal report control pls posts some sample code that I can use...Tanx! Dominic. tanx for the related links but its really hard looking for useful sample codes, the links just keeps on diverting me to other links. Can someone post a sample and useful codes for Crystal Reports and viewer controls Thanks... Dominic. Hi, You can try articles at Crystal Rep ...Show All

  • Chris Schneider How to Read through a Fixed-Length File

    Hi, I've a text file which has some data written. Records have Starting character as "#2" and Ending character as "#3" in ASCII respectively and the file includes series of records, but not written as Line by Line. The difficulty I'm having is, to how to transfer those data's into a database. The File comes a 7mb file and looping character by character then noting down the Record Starting Character and Record ending Character, and finally s ...Show All

  • bensun13 Form Design Goes Blank when switching between code and design?

    Hi, I am running the release version of VS 2005 Professional.  I have noticed a really annoying problem.  I am developing a SDI application using a tab control to provide access to multiple pages that allow the user to input data. There are 5 tab pages and they have approximately 30 or 40 controls on each (labels and textboxes mostly and usually a single ListView, 3 command buttons and 3 or 4 drop downs). I often switch back and f ...Show All

  • Satanas Efficient Threading

    Guys, Creating an app that's essentially a Telnet server. At the moment, I've got two threads: 1) Listens for connections and accepts them 2) Checks to see if any clients have sent data that is waiting to be read. Is that enough for a basic Telnet server, considering that I may have up to 2000 connections online at once Or should I have a thread for each client Cheers, everybody! Will Renee, Apologies. I use ...Show All

  • JUSTFUN Config files with VB6

    Hi, I'm using a VB6 + SP5 enviroment, and I need to read a configuration file where exists too many sections (like setup.lst files). In first time I have tried with basic I/O file routines (Open, Read,....) but this method isn't useful because sometimes the information can be on the middle of file. The file like this [1st section] key=value key=value key=value [2nd section] key=value key=value Does anyone can suggest another wa ...Show All

  • Paul Stovell How do I use generics?

    Public Function RectangularVolumn ( Of T As Structure )( ByVal width As T , ByVal length As T , ByVal height As T ) As T Return width * length * height End Function What do i need to do to make this work for any numeric type The generics solution Alex produced works to a certain extent but also has some pitfalls. The following code uses the g ...Show All

  • speertje How do I navigate to a folder and capture the path?

    How do I navigate to a folder and capture the path I've searched the documentation and all options seem to require you know the path in advance. I'd like to have a button on a windows form that allows me to navigate to a folder and capture the path to a string. Is this possible dennist685 edit:  is there also a way of capturing the properties of a file by selecting it In a way you made yourself clear. ...Show All

  • KnutVG Btn nothing Event

    I have a WForm with a button, this button pulls up a word document when a letter is chosen...great......now if a letter is not chosen and i click extract i get an unhandled exception error...any ideas on how i can solve this...so that when a letter is not chosen and i click extract a message box will come up and say no letter chosen....... There's not a lot to go here. I wish we could see some code. VS2005 has some new conditional tests I ...Show All

  • Windstay System.Drawing - XOR?

    Is there a way to XOR (invert) colors when lines of different colors overlay each other In VB6 I was able to help myself using the Shape control and set the DrawMode property to "XOR Pen". How to accomplish this in VB2005 Thanks! The IDE is almost certainly written in c++, which means that GDI+ and GDI can be used together. www.pinvoke.net contains lots of info on how to use pinvoke to call the old ...Show All

767778798081828384858687888990919293

©2008 Software Development Network

powered by phorum