20,285 Topics
![]() | |
what is control that i should use to save image into my database | |
I want to create a class in which I typed the text between **""** then the text color get changed. and also yes, I want to change the text color for some words. Yes it is somewhat similar like the Script Editor. Can anyone help me with this? | |
This is for a command button array but i have a problem in the quoted text, the error Expected End of Statement, i am learning from a book, i guess there is some problem in typing the code. Please somebody resolve my problem! Dim BookMark1 As Variant 'Mark your place … | |
hello everyone, im pretty new in this language (vb.net) so i have difficulties understanding its function, right now i am able to populate my database to datagridview, i've been looking for some related answers. but found no luck. so i decided to post it in here. so i have this … | |
Hye dude, Really need help. My problem is I want to insert data from treeview checkboxes into database. Currently im using an array, but when i insert the value it become double. for example, when i click two checkbox. the id insert in database will be two. Can someone help … | |
Hie! hw do i find an executable file in a downloaded system written in VB.net. Are there any other indications for such files besides the '.exe' or the 'application' extensions? Khu | |
Hi guys, I want to enable the Exit Button controls on startup and disable the Reset Form Button control on startup. and also assign a calculate button to the enter key. any guide or help? | |
I have a tab panel on form1 and on the 1st tab there's a button and when i click this button it will enable a function. what i want to do is to work on other tabs while the function on the 1st tab is still executing. is there anyway … | |
hi! i am creating a program that need to import excel file. i really don't know how to. Can someone help? Thanks in Advance! God Bless! | |
I have a login form , i want to limit privileges of the user based on their type (e.g ; admin, encoder) wherein when the admin login, the mdi form will load and all the control buttons are accesible for him, while when the encoder login , only one button … | |
Hello Community, I was wondering if there is a way to get only the visible section of the image from picturebox1 and place it in picturebox2. So what I have is picturebox1 set to a certain size, and the image size mode is set to center. Picturebox2 is also set … | |
I am trying to created a program that will check for updates then restart the computer and recheck for more updates. I want to know how to restart the application with elevated permission but only ask for permission when the program was first launched. I am not looking for someone … | |
I am migrating an application from vb6 to vb.net. The application has some checkboxes and dropdowns whose values we can store in a file. For this it uses propertybag writeproperties to return a variant which is then written to a file by file put.similarly for loading the settings the file … | |
Hey. In VB.NET, I need to write an array of bits to the serial port, in such a fashion that I can directly control the output signal. For example, I write 00110110 in VB and I need to get exactly that on output. I have tried SerialPort.Writeline but it's not … | |
Hi All, I have created a Vb.net application with back as MS.Access..I shall be very thankful if someone pls guide me on how to EXPORT DATA from the VB>NET Textboxes to NOTEPAD.. THe methof that i am using is creating a CSV file which is can Adjust in excel after … | |
Hi Dw I'm create an application that register a user and now because we accept even oldest people we have to include their years in a dropdownbox so I'm not sure if this is possible but I do think it is possible it just that I don't have a clue … | |
Hello, I am attempting to make a section in my application where a user can enter their own code which will be executed at runtime. I have looked up how to compile and run Visual Basic code while the program is running (Below). Dim VBP As New VBCodeProvider Dim CVB … | |
This is sample code for a ASP.Net Login page (using Visual Basic.Net code behind) with OleDB connection to an Access Database using ADO.Net. The datebase used is the Access Northwind Database. With the connection string being placed in the [i]web.config[/i] file. [b]1. [u][i]Web Config[/i][/u] File code:[/b] [code] <?xml version="1.0" encoding="utf-8" … | |
how to avoid duplicate lvList DoubleClick() Dim line = lvList.SelectedIndices(item.Text) lvPrint.Items.Add(lvList.Items(line).Clone()) | |
hello, ahm, can somebody help me, i'm always getting this error InvalidArgument=Value of '25' is not valid for 'index'. Parameter name: index this is my code: Dim currrentRow As Integer currrentRow = lv2T1.Items.Count() If compare(lv1T1.Items(currrentRow).SubItems(2).Text, txt2T1.Text) = True Then Dim lv As ListViewItem lv = lv2T1.Items.Add(txt1T1.Text) lv.SubItems.Add(txt2T1.Text) txt1T1.Text = "" … | |
Hi, I use these two sub procedures to read and write data into a textfile: Sub readrecord() 'Declare Variables Dim intcounter As Integer 'Reads how many Records are in file intNumberofRecords = filereader.ReadLine ReDim QuestionArray(intNumberofRecords) intcounter = 0 Do Until filereader.EndOfStream = True intcounter = intcounter + 1 'reads each … | |
i have problem in programming specially in visual basic, can anyone help me? | |
I’m trying to create a textbox, where the user enters a number, and the output shows a word representing each digit, each word is in an individual label created by the code, regardless of how many digits are entered. So if the user enters 153, the output will be: one … | |
i would like to search in my datagridview by using only a textbox and will automatically search the following data in my server how could i do that? please anyone help me! | |
Hi, Currently i'm developing a project which creates a videoke or karaoke like file. My main feature is to remove vocals from a mp3 file. is there any vocal remover plugin or vocal remover dll that i can use for my vb.net application?? if yes please help me how to … | |
I was working with VB6. Now I am trying to study VB.NET. In vb6 There is Cancel property for command button eg. If we make the cancel property of exit command button 'True',then if we press Esc key ,we can exit from that form even without clicking the exit button. … | |
Hello :) I am having a bit of trouble with a bit of code. I'm not really sure what is needed. The program contains a few buttons etc however, I am having trouble with two picture boxes. For this thread they are called **picBlue** and **picGreen** I want **picBlue** to … | |
hi guys, i'm currently working on a project wherein i would enter a router's configuration using vb i've tried it on my netgear router by calling putty using vb and manually typing the commands on the console what i want to know is, if i'm using a software like packet … | |
hey guys, i'm currently working on a project, i have a tabbed panel and i've put a timer on the 1st tab panel. what i want to do is for the timer to remain enable even if i change tabs. what could i possibly do for this problem? thanks | |
I am creating a pageant scoring system. I managed to display the field names from different tables : [Click Here](http://oi58.tinypic.com/5c0jz5.jpg) The first column "Participants" is from Participant table and the succeeding columns is looped from the Criteria table. This is the code: Private Sub CreateDataEntry(ByVal CatID As Integer) Me.CriteriaTableAdapter.FillByCategory(Me.PSSdbDataSet.Criteria, CatID) … |
The End.