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

Software Development Network >> Visual Basic

Visual Basic

New Question

Can this be done with VB?
BindingNavigator Delete Cancel
ActiveX Font property
How to set a control's visible property.
Sum Function on Select
Access or SQL Which one is better
Byte code
making images with buttons
Microsoft Office Document Image
If Date_Created is null then Date_Created = Date

Top Answerers

AZ-xyz
OOC#
Sueva
Apri
david999
Michel Cariotis
MackJerry
Inc
Jani N
RickReis
TrackGear
Only Title

Answer Questions

  • FedericoAX Migrating from Ms Access to SQL Server 2000

    Hi, Is there many changes need t o be done in order to change my DBMS. Currently, i'm using Microsoft Access in my VB.net program. however, i need to change the DBMS to SQL Server. So what should i do can i still use back the same coding what namespace should i include Hi there, It will help if you have SQL Server Enterprise Manager open for this. Make sure that the SQL Server you want to connect to is registered in Enterprise Manage ...Show All

  • KyleB Launching Default Browser

    ok here is my situation i have a richtextbox with a url in it i want it to be able to left click it once, it opens the default browser (whether it be ie, firefox, etc.), and goes to the url the user clicked. i have searched the forums and nothing i saw could help me or was the same situation im in. any ideas wow now im getting: "PInvokeStackImbalance was detected Message: A call to PInvoke function 'Project1!Project1.Form1 ...Show All

  • Brokit [2005] Active Directory with LDAP retrieving user object properties (TS Path)

    I'm trying to obtain the Terminal Services Profile Path for a user using VB.Net and the System.DirectoryServices.DirectorySearcher. I am able to get the user object's first name, last name, city, state, zip, etc. However, there is one property that eludes me. I cannot manage to find a way to get the terminalservicesprofilepath property. This is how I did it in VB6 and it worked perfect: visual basic code: I also want to get the User info fr ...Show All

  • Dr SQL How to insert text into word document

    Dear all My boss asked me to insert some text into the word Document. Let say I have a word document with content inside already and I need to insert some text (ABC) into the position of (Line 4, Column 2 or Left 60point, Top 60points) of this word doc. Does any one know how to do Thx Kit Sounds like the perfect job for BOOKMARKS. Some examples can be found on the MSDN site. You are using t ...Show All

  • DRV How to Registe Visual Basic Express Edition Beta??

    Currently, I have installed.I tried the link on HELP,but none webpage about registe on display on my screen. Who can tell me how to get the free SN for Visual Basic Express Edition Beta Tks!! Download the release copy of VB Express Edition and then try again. http://msdn.microsoft.com/vstudio/express/vb/download/default.aspx For more info on registering product http://msdn.microsoft.com/vst ...Show All

  • Brenden changing image inside a button

    hi there, i would like to change my display image inside a button when the button is clicked..how can i do it programatically for example: a button with text "Log In" and image LogIn.ico, when clicked, it will change to text "Log Off" and LogOff.ico can anyone please help me this beginner thank you thx Dustin..it does help...however, how if i want to use a image from Resource folder of my project, what is ...Show All

  • tom_davies How to Bounce a PictureBox on a Form

    I've been trying to create a program (with Visual Basic 2005) to bounce a PictureBox between to arbitrary points on a form, but it was not as easy as I had expected. I can get it to move left and right, but I need to click a button each time. How can I tell the program to bounce the PictureBox a certain number of times without always having to click a button Any help will be greatly appreciated. Thank you ...Show All

  • Gary7 DataGridView Add new record

    VS 2005 - WinForms - VB - DataGridView Is there a way to have the New Record position to be at the top of the grid I could do this using Janus Grid If you want you can automatically scroll down to the new row, you will need a databinder though Here's a very simple code: 'Note: This assumes that the datasource of the datagridview is binded in a BindingSource Button1_Click( ByVal sender As System.Object, ByVal e As ...Show All

  • Dvlnblk How do I add objects from a webservice to the data sources window of the IDE?

    Hello, I am using the new CTP of team suite. I am trying to add in datasets, from a webservice, into the data sources window. Does this work The message states that "The following Web Reference will be added and all of the objects it returns will be available in the Data sources Window:" Is there something that needs to be done differently in the webservice I jut created a default web service and added a simple public function that returns ...Show All

  • Lues New Project dialog is empty - No templates whatsoever!

    Look at this screenshot: http://dondata.homepage.dk/Empty.gif I have allready tried to Repair the installation, and allso completely uninstalled VB and the installed it again, but the dialog is still empty. What is happening and more important; how to get my default templates back Maby I can copy them from CD or something There must be a way to regenerate the default project templates Could someo ...Show All

  • barke05 Setup Wizard

    I purchased Visual Basic Standard 2003 and I see that there is no setup wizard.. Isn't there supposed to be one I think you pro or greater to get the setup wizard ...Show All

  • StRoNg-WiLLeD Encrypt in VB6, decrypt in VB.NET? (and vice versa)

    I use DES Encrypt and Decrypt routines in VB.Net2003, using System.Security.Cryptography - something like:     Public Shared Function DESEncrypt( ByVal strKey As String , ByVal strData As String ) As String         Dim strValue As String = ""         If strKey <> "" Then             ...Show All

  • jerjer BeginEdit Method ???

    Dear Team    How to use BeginEdit with datagrid or datarow to insirt a value in any one of    them (any cell or column) Hi, Here's a sample on MSDN online for DataGrid.BeginEdit() method: http://msdn2.microsoft.com/library/440t4bcs(en-us,vs.80).aspx     cheers, Paul June A. Domag ...Show All

  • MrWebber Counting Letters in a string

    Hello,  I am trying to get VB to count how many A's B's C's D's E's etc... that are in a  declared string, can someone tell me how to do this. thanks Ray RFeather[AT][NOSPAM]chstaffing.com   Eeeeeeeeeeeeeeeeeeeeeewwwww Ugly, ugly ugly....   Dim str As String = "a982734hfa98sudwhebwe8ruwbwe8r4b233" Dim  Others As Integer      ...Show All

  • JordanBean Entering Date Field

    What is the best way to enter (edit) a date field in a windows form I am trying to use maskededit for date field but its giving me problems in saving and retreiving from the table. BTW, masked edit is working fine for string fields like telephone number, NSSF number. The problem arises in the format of date storage in MSDE - US date format. For example, the 1st of March 2008 is being stored as 03/01/2008. Is there a way to change this to m ...Show All

616263646566676869707172737475767778

©2008 Software Development Network

powered by phorum