19,728 Topics

Member Avatar for
Member Avatar for samir_ibrahim

I am creating a form that will filter datagridview while typing in a textbox. I came through this error and I would like to know why is occur. [CODE=vb.net] Dim dt As DataTable = Ds_Pos.Employees Dim dv As New DataView(dt) 'findcrit is declared as string public and it contain a …

Member Avatar for samir_ibrahim
0
146
Member Avatar for awestove

I am trying to dynamically add checkboxes to a panel depending on if a file exists. My code is: [CODE]While d1 <= d2 If File.Exists("C:\bnb\" & m1 & "-" & d1 & "-" & y1) = False Then rm1CheckBoxes(rm1I) = New CheckBox() rm2CheckBoxes(rm2I) = New CheckBox() rm1CheckBoxes(rm1I).Location = New Point(20, …

Member Avatar for kvprajapati
0
106
Member Avatar for gedkins

I have a stored procedure in SQL Server 2008 that follows: USE [Numbers] GO /****** Object: StoredProcedure [dbo].[thenextnum] Script Date: 09/23/2009 15:35:16 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER procedure [dbo].[thenextnum] @descrip varchar(50) as begin declare @t table (nextseq varchar(100)) update number_definition_table set Current_Number=Current_Number+1 output inserted.prefix_format +(Case …

Member Avatar for GeekByChoiCe
0
184
Member Avatar for gianrocks

hey everyone im sort off new on .net and i was wondering if u can help me bigtime.. i am having problems with editing records when i do a search. example i was to search a specific record but then when i try to edit it, it turned out that …

Member Avatar for gianrocks
0
113
Member Avatar for jrosh

How to create an installable exe with vb.net 2005? i'm a novice to .net and let me knw a it simply.. Thnkx in advance

Member Avatar for Pgmer
0
106
Member Avatar for bonny343

how can i add the items in combox?i want to add item and then if user select that item it will open new form containg item which we selected.i want to make combox in which i want to select all browser which i have installed in my system and then …

Member Avatar for Pgmer
0
113
Member Avatar for navinkumar

I have installed visual studio 2008 I have installed sql server 2005 Now the problem is i want to make a application in which i enter the product id in text box and i shud get all other details such as cost quantity in cost textbox and quantity textbox respectively.. …

Member Avatar for TomW
0
77
Member Avatar for wetlife00

I doing the common 'enter scores, total, average and display" problem as I'm learning VB (see screenshot). It works great with the following code: ___________ Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim score As Integer = score Static scoreTotal As Integer = scoreTotal Static …

Member Avatar for TomW
0
102
Member Avatar for victor0101

How can I have a selected item in a combobox display the entire row in a data gridview using vb.net.

Member Avatar for TomW
0
89
Member Avatar for Bigead

I just need to know the code for switching the pages in the page panel. I want it so that when I press a button, it will switch the page.

0
53
Member Avatar for Mash'Funk

Hi have 2 list boxes on a form i have uploaded an example of the form im trying to code, would like to transfer an item to the next list box without duplicates so if you trying to send one item twice it should say msgbox("Borders already in the list …

Member Avatar for TomW
0
83
Member Avatar for mem81

Hi there, I have been struggling with this for quite a while now. I am a novice in .net so no wonder I can figure it out. I have a tab delimited file, where the sequence of lines should be 01UN1........................ 04UN1.......................... 09UN1........................ 01UN2.................... [COLOR="Red"]04UN2.............[/COLOR] 04UN2............... 09UN2................ However sometimes in …

Member Avatar for mem81
0
193
Member Avatar for gabanxx

i created a form with 4 textbox tht user can insert their data and stored it in sql server 2000 databse..than i manage to display the data when user starting the program... i also create an update button for user to update their data... the problem is when i want …

Member Avatar for obicerno
0
508
Member Avatar for yorro

How do I use the User-Controls as a form within a Form? This is my answer to my problem located on [URL="http://www.daniweb.com/forums/thread214973.html"]this thread[/URL] As seen in the original thread's solution, I've used solution #2. Instead of switching forms, I've used switching panels and the controls are contained in those panels. …

Member Avatar for yorro
0
2K
Member Avatar for perumar

I have successfully load a dynamic array reading the numbers in a text file into form. But how can I save that array again into text file after I change some numbers.

Member Avatar for CodeDoctor
0
1K
Member Avatar for Requestmd

Dear Members, Please Help Me. I am in huge problem. Please Send a solution of this problem. problem is:- Read Table of Word File and take cell value and store in excel file using vb.net in VB Please Help me............ thanks Requesmd

Member Avatar for CodeDoctor
0
109
Member Avatar for samehsenosi

hi everyone pleas i want to know the way how i can clear a particular line in multiline textbox i ant to know how to do that thanks 4 all

Member Avatar for GeekByChoiCe
0
83
Member Avatar for danielagaba

hi, i'm using the code below to insert data into an access db but keep gettin the error "Datatype mismatch in criteria expression" [code] total = Integer.Parse(txtMonth.Text) * Integer.Parse(rent.Text) Com.CommandText = "Insert into Report Values (?,?,?,?,?,?,?,?,?, NOW())" With Com.Parameters .Add("@ID", OleDbType.Integer).Value = CID .Add("@Tenant", OleDbType.VarChar).Value = cboTenant.Text .Add("@type", OleDbType.VarChar).Value = …

Member Avatar for TomW
0
80
Member Avatar for m_shanak

hi. I need to make one setup file .exe to install many programs. eg : i wanna to include the sql server in the setup of my application that i developed . so the user don't need to setup the two programs separatly . thansx

Member Avatar for m_shanak
0
155
Member Avatar for Merovingian

I have a listbox and a datagrid. When the form is loaded the listbox is filled with a list of tables from a selected database (SQL 2008). [CODE] sqlstr = "SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE = 'BASE TABLE' ORDER BY TABLE_NAME" [/CODE] Then I have a SelectedIndexChanged that populates …

Member Avatar for sknake
0
131
Member Avatar for jamesrobb

How can I extract repeated paragraphs of data from an html document. Every paragrahp is preceded by the line: <p><i>Summary as passed House:</i> <br> Thanks.

Member Avatar for sknake
0
752
Member Avatar for Merovingian

So I've been coding for a few months now and I have a pretty good grasp of most things but I can't wrap my head around getting info from loops. So here is my problem. I have a text file containing text similar to this: [CODE]<domain name="proxies"> <section name="proxy0"> <setting …

Member Avatar for GeekByChoiCe
0
154
Member Avatar for hemchantra

I have datagridview which display 3 columns. i would like to show icon in each rows with different by if column 3 = "OFFLINE" then the icon offline show else online show. the above is my code but not working. it is creating other column. please help me. Chantra. Public …

Member Avatar for GeekByChoiCe
0
2K
Member Avatar for codeambarish

I m creating an sms based application , so how to connect to GSM MODEM using VB.net , do any one have code snippet of this appl

Member Avatar for CodeDoctor
0
103
Member Avatar for haxor98

I need a little help :) My program opens up internet ports in the windows firewall for help with downloading via bit torrent or conenction issues with msn or steam. Now at the moment i have 3 settings , 1 hour, 2 hours or permenant but since this program leaves …

Member Avatar for TomW
0
218
Member Avatar for dorkwad

I compiled a project I made in visual studio 2008, but for some reason it only works on the computer it was created on, on any other computer I just get the "... has encountered and error and needs to be closed..." error message. At first I thought it was …

Member Avatar for dorkwad
0
121
Member Avatar for emint

Hi all how can i display data in data grid after reading txt file using vb.net. i got no problem in reading txt file. i just want to know how to display those data into data grid. if any can help that will be gr8. thx

Member Avatar for TomW
0
65
Member Avatar for helmX

I would like to convert the following code to .NET from VB6 [CODE]While Not rsMem.EOF i = i + 1 lstView.ListItems.Add i, , rsMem.Fields("lname").Value With lstView.ListItems(i) .SubItems(1) = IIf(IsNull(rsMem.Fields("fname").Value), "-", rsMem.Fields("fname").Value) .SubItems(2) = IIf(IsNull(rsMem.Fields("Title").Value), "", rsMem.Fields("Title").Value) .SubItems(3) = IIf(IsNull(rsMem.Fields("telNo").Value), "", rsMem.Fields("telNo").Value) .Tag = rsMem.Fields("per_id").Value End With rsMem.MoveNext Wend[/CODE] lstView is …

Member Avatar for kvprajapati
0
89
Member Avatar for yorro

I don't know how to explain this more clearly than I can. The codes in my form are getting too many/long. How do you split the codes into another? and still having the same classes and events in order to [U]reduce the amount of codes in the form.[/U] Sorta like …

Member Avatar for yorro
0
464
Member Avatar for jhill1979

Hello, My name is Josh I am in college and I am taking Intermediate VB.Net 2008 and I have been doing ok until now. I have been working on this problem for 2 weeks and still can not get it to do what it is suppose to do and it …

Member Avatar for TomW
0
114

The End.