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

Software Development Network >> Visual Basic

Visual Basic

New Question

How-to cancel changes to a record on user request...
How do I search the database for data and return a True or false?
Cannot Turn off Debugger for Websites - HELP
Returning UNC from Map Drive Dailog
DVD Burn/Copy
randomizing
SQL command to Access database in vb2005
EndEdit returns "Column 'No' does not allow nulls." error...
using visual basic in access
compile both dll and exe

Top Answerers

barkingdog
Paul Bates
Bryan Kardisco
Brain_Dead_Mind
Harold van de Kamp
SolidSpace
Bludysky
Syed Junaid
daydreamsy2k
Rajiv Roopan
sitemap
Only Title

Answer Questions

  • mleary DLL sending message to vb aplication

    From my VC++ DLL how can i send a message to my vb application please help me!!!!!!!!!!!!! You will need to be more specific for someone to be able to help you. In the meantime, you can create an ActiveX control in VC++ that sends the event. On the VB .Net side you can add the control to your form (withevents) and add the appropriate handler. Best Regards, ...Show All

  • kyus94 I am new at this, but I need to create a delimited file from (DGV)

    I am populating a datagridview which has 5 columns from a Oracle database.  I am using Visual Studio 2005, and it is a VB app.  I need to export the contents into a "|" delimited file.  I haven't found a good example of how to do this.  I do not need to open the file in Excel or anything.  Just need to create it.  I don't have to use a DGV, if it is simpler or better to just create the file from the tableadapter or create an array I can do that.  Just need some advice on how to get this done.  If someone could give me an example of how to do this I would greatly appreciate it.  Thanks I think the following links will be helpfull: http://steveorr.net/articles/ExcelEx ...Show All

  • P Willy Print to network printer

    I am trying to print to a network printer. I get the error saying: "Settings to access printer 'xxx.xxx.xxx.xxx' are not valid." This is what I have so far. I get the error on printdoc.Print(). Thanks in advance. Private Function Print(ByVal FileName As String, ByVal IPAddress As String) As String Try printdoc = New PrintDocument pSettings = New Printing.PageSettings printdoc.PrinterSettings.PrinterName = IPAddress.Trim printdoc.DocumentName = FileName AddHandler printdoc.PrintPage, AddressOf Me.printdoc_PrintPage printdoc.Print() 'If printdoc.PrinterSettings.IsValid = True Then 'Try ' printdoc.Print() 'Catch ex As Exception ' Print = ex.Message 'End T ...Show All

  • psling I need help on opening a file on the computer

    I want to click a button and it will open a program in the Start Menu then it opens All Programs and then it will open a file in the all programs folder ok the target is...  %SystemRoot%\System32\spider.exe        So what would be the code now, the program opens like this Start<All Programs<Games<SpiderSolitar so is this your own application you want to run from within another app where is it installed though only shortcuts are placed in the startmenu to the actual file application stored somewhere on the computer. yes this is my own application and i am running it from another application i created. Although i ...Show All

  • Vulcanoro Adding a right-click function to a control

    I hope someone can help me out with this. I'm trying to add a function to a button when it's right-clicked , but I can't find any way to do it. Thanks (in advance!) for helping. Hi Suliman, Well use hte Mouse_Down event and you can easily determine which button is pressed and take the required action.. Hope this answers the question.. Regards Ahmad Microsoft Student Partner - India Thanks, I tried the mouse_up event and it works ! Hi Suliman Ill b glad if u mark my response as Answered.. Thanks Hi Suliman, You can respond to an event other than Button_Click this will let you choose which button to respond to like middle,right,left,etc... R ...Show All

  • cmendozas Complex Processing In the Webbrowser control

      I'm working on system that has a complex browser based in the WebBrowser control and I've found somepages that it cannot process in ways that I do not understand. www.vanishingpointgame.com is a page that it cannot process and that why I am using that page to test on. I have taken the most simple test case in a form. It has a designer created groupbox with a dynamically created webbrower. It navigates to   www.vanishingpointgame.com . I do the following operations: I choose the box on the far left. I click on the little tab at the back of the box. Nothing happens.     In contrast IE7 opens a new dedicated widow. The interesting thing about the webbrower control is that if I mini ...Show All

  • Leonard Lee Winsock Question....

    I have to build a VB 6 program that (i'm guessing) sits on a server and "listens" for messages coming in on a particular port that are in an ISO format.  I have a pretty strong VB background, but have never done any programming on this level.  I'm looking for any input on what my best angle would be to handle this.  My problem is that I have no idea where to send the information back.  In looking at Winsock documentation, it looks like I could create a TCP or UDP app, but these look like I have to have a client on the other end.  I'm only writing the piece that sits on one location, and I'm not sure where the info is coming from.  Any help would be greatly appreciated.... Thanks ...Show All

  • viliescu reading information in files

    Hello again, I am looking for some help on accomplishing a certain task with VB2005 Here is what I want to do: I have a program that creates many, many files, I would like to be able to search those files for a specific piece of info contained in them and then evaluate it against a user set variable. For instance, I need to find a sting like this Z=-0.25, the user sets a numeric updown to let this program know what the smallest 'z' value can be, lets say -0.24. Since the above string is smaller than the numeric up down value, I need a message box to pop up showing that this file contains info that can hurt their machine. This is the code that I have so far: Private Sub btnRead_Click( ByVal sender As System.Object, ByVal e As Syst ...Show All

  • Pat J mouseover?

    when my mouse scrolls over a line of text in a dropdown list, i want to update a seperate list box with the same string of text that my mouse is hovering over in the dropdown list. what event can i use thanks. Hmmmmm. Mouseover is a control event. The didn't fully identity the kind of dropdown so I assume you are talking about a toolstrip dropdown Toolstripmenuitems do have mousehover events so I might try the following pseudocode: Since I don't know much about your application I'm going to pretend as if you have a string array (SA) that you are loading from dor the purpose of an example. Protected Friend withevents mi as toolstripmenuitem ' Class Member variable dim TM as new ...Show All

  • bird.tw what is the control used to display picture

    hi how to display picture with text the richtextbox hold only text can anyone say the textbox which holds both text and picture The richtextbox control will hold both text and images...utilize the clipboard to get an image pasted into the rtbox The clipboard class has methods to check what type of data it contains (if any) and also has explicit methods for cutting and pasting (getting and setting) the data. If the clipboard contains an image ... you can paste that image to the richtext box...How about posting some code and lets see where you are having a problem yes you are correct and what to do for placing the capturing the image also when i was trying to paste the content of the browser only the text disp ...Show All

  • davidg12 Question on store procedure

    Hi, Could anyone say me if there is a way to recover from a store procedure: 1 - how many parameters it has 2- Type of thoses parameters, string, integer, and so on 3- if those are input or output parameters. thanks... Sorry, I don't understand. In that site I found the information on how to Return schema information for a "data source", not for a store procedure. Could you explain me more.... You can get all of this information by using the GetSchema Method: http://msdn2.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.getschema.aspx By using the options and correct arguements for the method(explained in the link and l ...Show All

  • Robain csc.exe error with XmlSerializer command

    Hi, I hope someone can help me with this: I've got a program "out there" and most users have not had any problems but I now received a report from one of my users that the program throws an error right after this line. Dim mySerializer As XmlSerializer = New XmlSerializer( GetType myStructure)) The exception message is: Cannot execute a program. The command being executed was "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe" /noconfig /fullpaths @"C:\Documents and Settings\user\Local Settings\Temp\0paghihp.cmdline". The user is logged on as administrator on a Win XP Pro machine. I checked all over the net and could not find any relevant clues so far. Any ideas anyone Thanks ...Show All

  • Jabber OpenFileDialog Question

      I have the following code written for the opening of a BMP image from the File...Open on my menustrip. Private Sub OpenToolStripMenuItem_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OpenToolStripMenuItem.Click OpenFileDialog1.Filter = "Image Files (*.bmp)|*.bmp" If OpenFileDialog1.ShowDialog() = DialogResult.OK Then Dim fileName As [String] = OpenFileDialog1.FileName End If End Sub   I tryed it out and it worked, but i have a small question.....How can i change the default name that appears in the file name of the window browser It is set to "OpenFileDialog1" How can i change it to an empty space   EDIT: I just added a picture ...Show All

  • Sarosh79 A C# project with a VB project [Express]

    Hey. I have an old project from an older version of Visual Studio that uses a .vbproj and a .csproj in the same solution. I need to update the .vbproj file to add extra information, however whenever I open it in VB studio express it cannot load the .csproj, and visa versa. How can I do this I apologise if this question is extremely stupid, I do not have much experience and it seems the project has been terribly coded (only updating someone else's old project, with permission) I can supply the source code if needed I feared that. Is there no other way the express editions are seperate environments for VB.NET and C# - you can't load both solutions in 1 IDE. It's either VBExpress for VB projects or C# Express for C# pr ...Show All

  • Blue-Fire Why VB compiler is allways running !?

    I’m sorry, i just don’t want to be rude. I have a few simple questions !!! 1o Microsoft want to KILL VB ! 2o if not, so why the stupid compiler start compiling a every line i wrote. 3a Why this experiencing is not lived by the C# compiler !! perhaps the C# team made very good job !!! 4o The performace patched release by you guys, work but the problem is not solved, the IDE continues flinking, the compiler is allways running, the bigger projects continues to be slow to work on them..... Sorry, but i’m working with VB.NET for a quite long time ( since VB.NET 2002 and 8 hours day) , and i’m doing a very large application since them and for the last 6 to 8 months i was experiencing something that i never imagine, slow pr ...Show All

747576777879808182838485868788899091

©2008 Software Development Network

powered by phorum