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

Software Development Network >> Visual Basic

Visual Basic

New Question

Form is Flicker when I draw many Buttons at Runtime
Fill a combox with DataReader
Shut Down PC
Multithreading problem
Checking File Extension
I NEED HELP!!!! PLEASE
How do I copy bitmap data to a buffer?
Hide/Show Certain Text Fields in a form
Weird VB .net windows service install problem
Program running ok in debug mode, but not in release mode

Top Answerers

noctifer
Markus Fritz
PaulSw
urir
Chrismanster
Winnie.Wang
Mamush
kuponutcom
Kirby Star
Venkatroyal
PBS NewsHour with Jim Lehrer - Headlines
Only Title

Answer Questions

  • abhishek thakur why does toolstripcontainer/toolstrips show up on form load?

    Intended behavior is to NOT have the ToolStrips or the ToolStripContainer appear on Form Load, only the PanelMiddle and PanelBottom. I want the toolstripcontainer and its toolstrips to appear only after a tab control's selected index changed event is fired. I thought that setting all of the toolstrips/toolstripcontainers to false in MainForm_Load below would do the trick . So why are all the toolstrips visible when the application is run Before I actually select the tab control's index that would set visibility to true Thanks, -greg MainForm.Designer.vb Me.ToolStripContainer1.ContentPanel.Controls.Add(Me.PanelBottom) Me.ToolStripContainer1.ContentPanel.Controls.Add(Me.PanelMiddle) Me.ToolStripContainer1.TopToolStripPanel.Con ...Show All

  • medosa unable to create exe with multiple forms

    Hi, I have a VB application with 2 normal forms and 2 dialog forms.I am not able to create an exe of it.I tried with File->Make option.It creates a scrap clickable exe which fails to load.Could anyone please tell me the possible problems. Regards, Swapna Hi, The problem is solved... If anyone comes across such kinda problem then, try creating a new project and add the forms again and start creating the exe... it will work.. Dont have the reason for this solution.. it works... Anyways thank u for the reponse.. Is this VB6 that your trying to use, as I seem to recall Make was an option rather than a build in .Net When you say the craps a scrap clickable exe. Are you trying to run the EXE on the same machine as the ...Show All

  • cybertaz69 ociEnvCreate failed with return code

    Hi I am new to VB.net windows application i am using VS2005 and oracle client for database connection i am getting this error when i run the application " ociEnvCreate failed with return code - 1 but error message text was not availabe " can anyone help me plz Thanks in advance Hi my deployment machine has oracle client i have to write try/catch in all the method(connecting database) in my application to write the calling procedure name in error log i am new to dot net. can give me sample code to do this Thanks Did your application work after giving the network path or did the error logging work I'm having the same issue. My .net application hosted on one of our I ...Show All

  • 陛下 TextBox & ComboBox Autocomplete

    Can I force the user of my program to strict to the list of autocomplete feature of a textbox and a combobox I want the user to use just the items in the autocomplete list VB2005 I know that and I use it but I want a control like the combo box in microsoft access whe you set that values to be fetched from a table and you use strict to menu the user can type in the text section of the combo but in this control you can't do that thank you - No not working for combobox - I want It for a textbox as stanalone component - and also for combo box with dropdownstyle set to drop down my question still unanswered ...Show All

  • noni78 Problema con IDE Visual Basic .NET (VS2005)

    Porque estoy perdiendo el CompanyX, a nivel de compilacion va todo correcto, pero el IDE insiste que hay un error, los imports estan correctos, me podeis dar ideas para comprobar o hacer que desaparesca ese molesto error de Entorno Public Function Actualizar(objDS As System.Data.DataSet) As CompanyX.Comun.Entidades.Delegado_MetodoY does not have the same signature as delegate Delegate Function OperacionActualizar(objDS As System.Data.DataSet) As Comun.Entidades.Delegado_MetodoY. Observar que en el error el IDE ha perdido el CompanyX Delegate Function OperacionActualizar(objDS As System.Data.DataSet) As [CompanyX].Comun.Entidades.Delegado_MetodoY. Ya no se que hacer... gracias patocl Necesi ...Show All

  • AlucardHellSing How to transform files from code?

    I have the following files format for VISUAL STUDIO 6 Pack, which I have to transform to EXE application: 1. PDM 2. vbp 3. frm 4. frx 5. SCC 6. vbw I'm new to this and would like to know how to do Regards Hi - Let me make sure I understand the transform you want to do. So you have a VS6 project (vdp) + source code files (frm, frx, etc) and you want to create a built application EXE If so, the way to do this is File -> "Make EXE". If your goal is to convert this code into VB.NET code using VS 2005, you can use File -> Open Project and choose the VDP file. This will automatically convert the code to VB.NET using an upgrade wizard. You can learn more about VB upgrade gu ...Show All

  • Quilnux JIT Debugger Error message caused by filelistbox

    I have been working on a program and testing it on another computer that has the .Net framework installed. My program works fine on my computer with .Net installed. However, when I run it on the other computer (with only the framework installed) I get a random error: MyApp.exe - Common Language Runtime Debugging Services Application has generated an exception that could not be handled. Process id=0xf3c (3900), Thread id=0xf64 (3940). [The numbers in this error line are different everytime] When I hit cancel to debug it displays MyApp.exe - No debugger found. Registered HIT debugger is not available. An attempt to launch a JIT debugger with the following command resuled in an error code of 0x2 (2). Please check co ...Show All

  • parreg find a character in string

    Hi I have a variable server = "sqlmodl2\sql_modl2" I want server2 =modl2 i.e I want to return all the characters after the _. Can anyone help me. Here are two ways to do it:         Dim server As String = "sqlmodl2\sql_modl2"         Dim server2 As String = Split(server, "_")(1)         Debug.Print(server2)         server2 = server.Substring(server.LastIndexOf("_") + 1)         Debug.Print(server2) There are probably several more ways to do it as well. Mr. Carr As usual you have been very helpful. ...Show All

  • tribal How to disable the refresh method of Picturebox

    Hi : I Have PictureBox Control the user can draw over this picturebox some lines and  he will save it to file . but when the form that contains this picturebox has minimized or sended to back when the user get the form to top again the drawed lines over the picturebox  were gone . and the picturebox has refreshed . i want to disable the refresh method to make the picturebox save the changes . is it possible   thanks ................   looking at the problem from the wrong angle....you don't want to disable the refresh you want to redraw everytime the picturebox refreshes...this is done corectly by using the pictureboxes paint event to d ...Show All

  • SuriP how do I Refresh "My Computer" network drives for vb express 2005 data access

    Since windows 2000 came out there has been annoying red "X" on My Computer's network drives. If you click on them, they go away and the files are displayed. In VB 2005, the mycomputer.filesystem.drives.item(n) does not refesh them and directory.getfiles("P:\") returns an error "could not find part of the path P:\" When I double click on P: in my computer, the error goes away and I can read the files again. This is annoying becuase I write a lot of network applications. How can I implement code in my program to refresh drive "P:" I just tried : Using sw As StreamWriter = New StreamWriter( "P:\temp.log" ) That does not work also... ...Show All

  • VonRath Copy Local Praoblem or bug

    Hi All I am using visual Studio 2005 Standard Edition. I have created a Class Library Add in using VB 2005. Then i added references with copy local= true . The program complies and run smoothly. Then i changed my copy Local =false . It complies well. But to my surprise when i run the application it complains about missing reference and that reference happens to be the one which i made copy local=false. I am sure i have given the correct references paths and so on. Could anyone explain what's going on Thanks in Advace PRash Hi again My intension was to keep all my references in its origal places without coping to the out put directory. That is the reason why i used copy local = false in ...Show All

  • clint 2 Hiding, but not overiding or replacing, a inherited property

    My last thread was locked before I could get my question anwsered, but i realize that the moderater did it because he thought my question had already been anwsered, which is my fault because I did not explain my question clearly; I am a poor writer of English. I know that the forums must be kept clean, so let me refrase my question: I want to make the Height property not useable from outside the class I inherited from usercontrol, but it is not virtual so I can NOT use the override and browsable(flase) method, I cannot use the new key word because I still need the height property inside of my class. Any suggestions would be much appreciated. Yes you can use New . Use New to hide the property and set t ...Show All

  • Subtle Confused

    I notice this forum has the same name as the old off-topic program that is taboo to talk about or even mention in a sentence ~ as even I noticed in a post.  Shouldn't they add the .Net to the forum name as they have it on the retail box After all .Net IDE/compilers are very different from their previous generations. It probably would make little difference. You'll note that The top of the forum details Visual Basic General Questions and discussions not covered in the other VB forums such as Data and Setup. ( Not for VB6 questions .) As does http://forums.microsoft.com/MSDN/default.aspx ForumGroupID=10&SiteID=1 We get questions relating to VB Classic ...Show All

  • Bertrand Caillet ArrayList in a Structure Arry

    I have created a normal structure that is based on the below model Friend Structure abc Friend a As Double Friend b As Byte Friend c As Double Friend d() As Integer End Structure Then in the class I have declared: - Friend Shared abc(0 To 3, 0 To 3) As abc I don't know how I can initialise the array d() I can't just do Redim abc.d(9)... For obvious reasons I can't just call abc(XIndex, YIndex).d(1) = 3 ...this will result into an error "Object reference not set to an instance of an object" Any suggestions Thanks Jansen You were very close on your origional post: Redim abc(xIndex, yIndex).d(0 ...Show All

  • Jassim Rahma Hotkey control in vb.net?

    Does VB.net provide a control to include hotkeys in one's application i.e., a textbox which displays hotkeys that need to be assigned. Thanks for any help. not sure I quite follow, do you mean you wish to create shortcuts within your application and do a specific action or do you mean show the shortuct with the specific keys assigned to Yes, I wanted a control for users to select hotkeys. And I was wondering if VB.net provided any means to do that. May be I will try your 3rd Option. Thanks for the reply.   Prasant Swain wrote: Can you explain in details what you want to do Thanks for the reply. I am using RegisterHotkey function to Re ...Show All

828384858687888990919293949596979899

©2008 Software Development Network

powered by phorum