20,284 Topics
| |
I am using this code to compare two datatables(myTable and Dtable) and when I find two rows with common data I delete the rows in my other datatable(dtable) so that dtable comes up with data that is not already in myTable. However the code is not doing that at all. … | |
is there a function that allows for auto sizing of report column widths ? How to auto size a textbox in report viewer based on the length of data from a database? Any help is much appreciated. Tnx. | |
i have data grid view , what i need is when the user click on some cell another datagrid view how i can do this , and after that i need what the user select from the second , the data reflected to the first one , thanks before | |
Hi I want to install the following on my new laptop:- 1. VB6 2. Crystal Reports 8.5 3. Crystal Reports 9 4. SQL Server 2005 5. VS 2005 6. SQL Server 2008/SQL Server 2008 R2 7. VS 2008 8. Oracle Server 9. Microsoft Office 2007 What sequence should i follow … | |
Help, I need a free hosting site! I have a website made of PHP that I need to upload to a web server and a VB.net application on my PC, I saw tutorials on how to connect my VB.net application to my database located in the web server with my … | |
>I use MySQL database Two tables: Table 1 articles Field: article nb article description supplier cell 100 nails company 1 no 200 screws company 2 yes >Table 1 stock Field: article nb. barcode nb. barcodedescription instock 100 10011 nails 2 inch 5000 100 10012 nails 5 inch 0 200 20012 … | |
Hi everyone, I have developed a site using VB.Net and Visual Studio 2010, that allows users to upload and download multiple files to an FTP server. I have recently been given a request to change this so that SFTP is used instead of FTP. I have downloaded WinSCP but am … | |
Hi guys, I have setup a form (frmParent) that contains 1 TableLayoutPanel with 1 col & 2 rows. In the first row i put a DataGridView and on second row i put a Button. I set all controls' modifiers to Public. Then add a form (frmChild) that inherit from frmMaster. … | |
I'm new to Visual Basic. I have a little program look like this. https://www.dropbox.com/s/xr44pxp3n79atkk/wall.png <Please have a look It will calculate the total area by adding up all wall area. Public Sub btnWallAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnWallAdd.Click FlowLayoutPanel1.Controls.Clear() FlowLayoutPanel1.AutoScroll = True For i As Integer … | |
i'm having problem in coding for my project i.e Hospital Management System ... plz refer me few sites which provide codes of vb.net i'v done only the code for the login form ... | |
The following is the code from an assignment I am struggling with. I am supposed to change the GetGallons function procedure to a sub procedure in a class that i created in another project.. Here is the code from the original class: Public Class RectangularPool Private _decLength As Decimal Private … | |
Please, I need help. I want to capture finger print and save it ĩ̷̊ñ database. I have not done it before. Please I need help on how to go about it. I am working with vb.net and access database. •̸ŤђαϞĸs so much ĩ̷̊ñ anticipation. Opman | |
Greetings, i am doing a school project which basically deals with forms and an access database.I have various textboxes in a form.I want some textboxes to be filled automatically with a value when another textbox has been filled. For e.g , if the user fills in the 'Cost' textbox , … | |
how i can convert an integer value to percentage value (%) , using vb.net | |
hi, does textchange control for the textbox executes for every change in every character or for the full text? | |
I have a question, been racking my brain trying to figure out why this is happening. Let me start off with a chunk of code. This takes values from a textbox and writes them to an Excel sheet: Public Sub printFrmDUIReportPreview() '// =============================== PRINT PREVIEW DUI REPORT FORM ================================== '// … | |
can someone tell me how to get the values of the dynamic texbox created..on my first code, i munaully put textboxes..but resulted to non efficient code according to my prof..so i found a code that dynamically create texboxes, but my problem now is how to get the values of them. … | |
hi friends, i have a problem with using vb.net application, i want to restore my database from my vb.net application so that user clicks the restore button an OpenDialog open which Open the .bak and then restore the database to a state befor backup taken. i try the follwing code … | |
I would like to though my datatable and seach in one particular column if there are any zeros.Currently I've been using the code below but I am not happy with the results . Any suggestions, ideas If FormatNumber(myTable.Compute("0.00", "ProductCode = '" & txtProductCode.Text & "' "), 2) IsNot Nothing Then … | |
Hello, I have 2 datatable, first table for customers personal information and second table for customers areas of interest. this two tables have same ID for same customers. So, when i want to check my some group of customers(like who intrests on sports stuffs) i need filter my first table … | |
How does one validate username and password from sql database? I have used parameters in doing validating my database, but have noticed that username and passwords are being accepted when i type it straight out(EG. username= e001 , password=dave@road) , even though they have characters in capital letters(such as username=E001 … | |
please help how i enable the crystal report viewer in mentiom image control | |
hi every one! I am creating an application in vb.net with sql server 2005 at backend. I have a table PURCHASE Order with 3 colunn i.e PO_Id ,Cus_id and PO_QTY . In front end i have a SAVE button, two TexTbox 'POrder no' , 'Order Qty' and combobox 'cutomer NAME' … | |
Hello guys, I'm new to this forum and I'm a biginner in VBnet language. I'm using VB express 2008. I'm trying to create a PC version of the famous game "Ticket To Ride" using VBnet language. I uploaded the map as a background image. I thought about creating pictureboxes,rotating them … | |
i have a datagrid which contains a CheckBox colum. now i want to pass values (just 1 column) from datagrid to listview based on which cell is checked. ![Untitled31](/attachments/large/3/Untitled31.jpg "Untitled31") Picture shows that, once the cell is un-checked value disapears on listview.column 1. Thanks daniweb in advance | |
i made the form of search of my project as in screen shot in vb.net the problem is that it shows the record many time of one person i put the sql query this qury = "SELECT p.per_id AS 'Person ID', " & _ "p.per_name AS 'Name', " & _ … | |
Sometimes sorting data can be easy and sometimes it can be difficult. If you have data in a listview you can spend a great deal of time writing ICompare functions. This is appropriate for non-trivial applications but can be a little intimidating for inexperienced programmers. Also, it is a problem … | |
> please help me check this sql statement. it is giving me this error "No value given for one or more required parameters. " cn.Open() Dim cmd As New OleDb.OleDbCommand cmd.Connection = cn cmd.CommandType = CommandType.Text cmd.CommandText = "Update HallTransaction Set status=? where ID=?" cmd.Parameters.Add("@statu", OleDb.OleDbType.VarChar).Value = check cmd.Parameters.Add("@Custid", OleDb.OleDbType.VarChar).Value … | |
Using VB.NET 2010 All helps is greatly appreciated! Currently I am parsing through 1,000s of text files each day and inserting them into SQL. I am unsure how to break up the actual pipe delimited data and insert it properly into my database columns so I am doing that through … | |
This is a piece of code I wrote a long time ago when I saw someone make a "guess this scrambled word" game. The program didn't have to unscramble the word to know what the answer was, but I wanted to do it anyways. I wanted an algorithm that could … |
The End.