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

Software Development Network >> Visual Basic

Visual Basic

New Question

Drag & Drop Object When Form is Larger Than The Monitor Display
Web Part Deployment Error [ Microsoft SharedPoint Portal Server 2003]
My.Blogs Error - ProjectType value did not exist.
Help with adding an executable file as a resource
REQUEST: IDE Support for AddHandler
define program version
making an api call error 126 (findWindow)
AnalogTVTuningSpace and MSVidCtl
2005 app slower than 2003
How to make slideshow transition with Picturebox

Top Answerers

KannanPV
weejay
Erpman
kfarley215
Roland Jochems
Matt j Cimino Crawford
Pogman
Shadamus
Dave Waterworth
Reidid
Ferrand, Nicolas
Only Title

Answer Questions

  • CurtisDeHaven VB2005 and webbrowser control

    Hi, I am trying to use the webbrowser control as a list view for viewing files on the disque. My main purpose is to use build-in fonctionnalities like thumnails view withaout having to write code (reinvent the wheel). It works great but I don't know how to programatically control the way the browser display files. I mean, how to control the "view" property (list, details, thumnails, etc) of the web browser. I also would like to remove that menu ...Show All

  • djwhit3 Get ANSI values for a char?

    Is there a way to return the ANSI value for a char or string   For example, is there a way to return 34 for " or 65 for A Thanks Dave there may be a simpler way, but this works - Dim bChar As Byte = System.Text.ASCIIEncoding.ASCII.GetBytes( "A" )(0) Dim i as Integer = Microsoft.VisualBasic.Asc("A"c) Best regards, Johan Stenberg Ugh! the VisualBasic namespace! how crass ...Show All

  • WM8S Downloadable Search Application (windows) using VB.NET

    Hi- I am working on a downloadable desktop application (windows) using VB.NET which can search for data in a data file. I have used XML as a data file before, are there any other better data file formats available Any help will be highly appreciated. Thanks, Prabhu Thank you, Paul. I will look into these options. Regards, Prabhu Hi, XML is free, but if it gets beyond a particular size, you will have issues. Access or MSDE may ...Show All

  • jayww oledb vs sqlclient data adapter performance when running in ide

    I have a fairly wide table on a MS Sql server 2000 server. Pulling about 6000 rows using a the oledb namespace in the ide takes about 6 seconds. Using the sqlclient namespace it takes about 0.3 seconds. When run outside of the ide, the sqlclient takes about 0.2 seconds and the oledb takes about 0.3 seconds. Why the huge increase for the oledb namespace I'm using a 3rd party assembly for some data access. They use the oledb namespace because not ...Show All

  • Graham P ADO/Access Questions

      I've had a moderate amount of of experience with access databases in vb6. We'd declare a file system object and from that declare a workspace and from that a record set descriptor. One could picture and understand what was happening. VS2005 is different though. You could create and delete tables and define them dynamically. VS2005 seems to be different. It seems that things are done up front in the IDE Almost as if the relatio ...Show All

  • haSta runtime error 2147467259(80004005) ISAM couldn't be intializa

    i'm using adodb code for connection with access With conConnection .Provider = "Microsoft.Jet.OLEDB.4.0" .ConnectionString = "user id=;password=;datasource=C:\Documents and Settings\Mukul Kumar\My Documents\hay groups\db1.mdb" .Open End With where con Connection is connection type variable i'm using microsoft ado 2.8 library. at the runtime i get the error 2147467259(80004005) could not find installable ...Show All

  • systemanalyst Overflow???

    This code is generating an overflow exception and I really don't think it should be: Dim u64HiBit As UInt64 u64HiBit += &H8000000000000000 or u64HiBit =   u64HiBit or  &H8000000000000000 In my understanding this is simply setting the hi-bit in an unsigned integer. It certainly shouldn't cause an overflow unless it's not really a 64-bit entity. There is a worse possibility which is that it truly isn't supported w ...Show All

  • terryc_ms Does VB.NET support "nested" expressions (like C++?)

    Hi all! I don't recall the exact term in C++, but I could do things like: int c = 5 + (a > 1 a : 0) + b; Can I also do this some way in VB.NET Thanks in advance! What follows is my opinion: User familiarity with the syntax. Someone who coded in vb6 is going to have an easier time adapting to VB than C#, and someone who coded in Java/C++ will have an easier time adapting to C# than VB ...Show All

  • happy_84k Detect if a file sitting on a network drive opened by another user

    How can I detect if a text file sitting on a network drive is open by another network user I am using VB.NET 2003. Your help is highly appreciated Regards Hello. You can use something like the following to accomplish this: Dim fileTest As New System.IO.Filestream(<enter some file here>,FileMode.OpenOrCreate,FileAccess.Write,FileShare.None) If fileTest.CanWrite Then Debug.WriteLine("The file connec ...Show All

  • Steve Russell Error with my project

    Hi! I have nearly formated my pc. And i copyed my project. Then i installed VS.2005 on my new formatted pc and tryed to continiue with my project. I open the project and try to open my main .vb file. Then it comes an error opening the .vb file... I cant tell exactly what it stands right now, because im not on my computer... I write what the error contained later today. If someone understands this without explaining what the error said, it have b ...Show All

  • ghenap My.Application.OpenForms missing after VB6 Conversion

    Hi All, I have recently converted an existing VB6 application to VS 2005. After various changes and redevelopment tasks I am down to the last few compilation issues, all of which are that the OpenForms collection of the Me.Application namespace is not defined. Though and behold, when I look at the namespace it is not there! Thinking it was a problem with my machine I created a new Windows form application and wvrything was OK, the collect ...Show All

  • mattdawg Why do the ODBC 3.5.1 and MySQL 3.1.8 drivers not work?

    Why do the ODBC 3.5.1 and MySQL 3.1.8 drivers not work Michael Is there no possible way to do this I have not been able to get it working using the ADD NEW DATA SOURCE. I have heard that by coding everything manually I can get around all of that.  Is that true You never mentioned why it is not working!! Michael Im sorry, i thought you where asking for help, and i was trying.  It seems you are on your own now.   ...Show All

  • John Freddy How To Add Coulmn in table MS Access database

    I'm using VB2005 , 2003 I have created my database, but with time I need to add or delete some columns in my table, How can I do it ReneeC wrote: What I am working on IS ADO.NET accept for table Creation/Persistence and is only intended to local Access databases. Are you saying that DAO would be better Jumping in here again...The primary advantages for using DAO are performance and full support of Access databa ...Show All

  • Kiran9999 Just wondering is it possible to change the default title of MsgBox?

    Is there a way to change the default *ugly* title of MsgBox Please don't take it wrong. I know that I can provide the 3rd parameter - but I have to do it on every call. Any ideas Hi, Defaultly the Application name is displayed in the title bar of a MessageBox if you don't specify a title. So if you want to change the default title, then change your application name. cheers, Paul June A. Domag I already found that. But that also ...Show All

  • SrijitCN Add imlicit or explicit cast functionality to a class

    Hi all, How do I implement implicit/explicit function to my class My class looks like this: Public Class MyTestClass Private _value As String Public Property Value() As String Get Return _value End Get Set ( ByVal value As String ) _value = value End Set End Property End Class From my code I'm forced to enter a value like this... Dim test As New MyTestC ...Show All

394041424344454647484950515253545556

©2008 Software Development Network

powered by phorum