20,284 Topics

Member Avatar for
Member Avatar for iamthwee

What's the easiest way to create graphs? (free if poss) P.s I have a look at ZedGraph and NPlot and they ain't for me. Cheers

Member Avatar for rifkhi
0
169
Member Avatar for Beuki

I am wanting to make a menu application. I want to duplicate the start -- all programs section of Windows. so, when the user clicks on the start button of my program, and goes to All Programs - there is a list of all the program folders, sub folders, and …

Member Avatar for Beuki
0
96
Member Avatar for pygmalion

Hi I'm posting this here, because i'm not sure where else and i have a gut feeling i will be doing this with VB. My goal is the following: I have an Access database (with four fields, of which the first one is the key) which I'd like to use …

Member Avatar for timothybard
0
184
Member Avatar for amorphis88

Hello, i have to export a column in vb.net to Oracle database. only one table. How to start?

0
61
Member Avatar for tcordero

I need to add a feature in my VB .NET application to SCAN a document directly to a directory. The output directory and output file name is pre-defined in the application. I don't want to have the scanner config screen to popup everytime. Thanks, Ted

0
53
Member Avatar for Anitaks

How do I get serial numbers updated automatically on adding or deleting a record in datagrid.?

0
44
Member Avatar for sriviji

Hi, Dim MyDT As New DataTable Dim MyRow As DataRow MyDT.Columns.Add(New DataColumn("Item", GetType(Int32))) MyDT.Columns.Add(New DataColumn("Quantity", GetType(Int32))) MyDT.Columns.Add(New DataColumn("Price", GetType(Int32))) MyDT.Columns.Add(New DataColumn("Total", GetType(Int32))) MyDT.Columns.Add(New DataColumn("InvoiceNo", GetType(Int32))) MyRow = MyDT.NewRow() MyRow(0) = TextBox1.Text MyRow(1) = TextBox2.Text MyRow(2) = TextBox3.Text MyRow(3) = TextBox4.Text MyRow(4) = TextBox5.Text MyDT.Rows.Add(MyRow) Dim i As Integer DataGridView1.DataSource = …

0
42
Member Avatar for tableray
0
82
Member Avatar for infernojmd

so my project is a text editor and i am trying to make an open button and save. my code only opens the last part of the file it read. i was wondering if someone good help me or give any tips. thanks [ICODE] Private Sub OpenToolStripMenuItem_Click(ByVal sender As Object, …

Member Avatar for Teme64
0
99
Member Avatar for ravindransrm

i am doing sumall supermarket project this project i want to print invoice using dotmatrix printer table i am using this fields billno,sl.no,productname,qnt,rate ,total any one send some idea about this.....

0
64
Member Avatar for swappy

Hello guys I asked to make a library management project in the college...last year project many over here would might know... I just wanted to ask you guys how should I proceed with this thing..

Member Avatar for ithelp
-3
488
Member Avatar for Nommy

Hi Everyone, I am developing a software that is interfaced with a RFID device. The RFID device manufacturer provides me with a DLL file that contains various functions to communicate with the device. One of the simplest function in the dll file is "CommOpen". This function opens the selected PC …

Member Avatar for Teme64
0
312
Member Avatar for jaslysahal

hai, i am a beginner,,,,i want to know,how to install my project into client system.i want to know it in detai

Member Avatar for jaslysahal
0
136
Member Avatar for kn2790

well tried readin many tut's about how to go about doing this but they seem to confuse me :S there seems to be many ways. i understand the concepts of what is required, but jus cant implement it into code [url]http://www.programmersheaven.com/mb/VBNET/389030/389030/database-search-/?S=B20000[/url] So im trying to display results from a form …

Member Avatar for kn2790
0
107
Member Avatar for kerek2

Hi alls, I'm using console application to pull data between 2 different database and column name (from Oracle to Sql 2008). The connection already done..but i'm having problem to select and insert from oracle to sql... The details as below :- Oracle DB Table :- Event Column : ID , …

0
65
Member Avatar for mhm_ra
Member Avatar for baderabc
0
70
Member Avatar for ravindransrm
Member Avatar for likewhoa

When i hit the start button i just get white boxes and no image for the dynamic and the image does not show for the random image i get a red x wondering if anyone can help me thanks! [code] Dim r As New Random Dim s As String Dim …

Member Avatar for Teme64
0
130
Member Avatar for SHALINISHEETAL

Can anyone pliz solve this....am a beginerin vb.net i wana know how to get squared digit length of an integer

Member Avatar for crazyhorse09
0
56
Member Avatar for tinajl

Hi All, I'm very new to VB, and I've been working a project for a class for a while. I'm trying to link totals from three different forms to a final form, but I'm getting stuck w/my coding. Someone suggested that I use the first form to set up the …

Member Avatar for c0deFr3aK
0
107
Member Avatar for BlahHx2

Ok lets say i want to make a web browser with tabs how would i get the first tab to display a webpage like google.ca as soon as the application opens?

Member Avatar for Jammerx2
0
209
Member Avatar for HalloJoe

Hi all! I need to check if an object with equal property value(CustomObject.Key) exist in my custom list In a List(Of String) i would do it like this [code=VB.NET] Public Class StringList Inherits List(Of String) Public Overloads Sub Add(ByVal s As String) If Not Me.Contains(s) Then MyBase.Add(s) End If End …

Member Avatar for tennisace24
0
4K
Member Avatar for baby_1

Hello how can i send a fax with my computer(modem) and FAXCOMLib control? why connect do? its neccesery to specify it?

0
47
Member Avatar for Naziakanwal
Member Avatar for jaslysahal
0
36
Member Avatar for ravindransrm

hi im working on windows application.vb.net In this Application iam using two forms one is invoice form other one is search form first form one find button used to i will click button search form showme, my search form i am using datagridview datagridview some field product id,product name,price list …

0
72
Member Avatar for tableray

i want to show a msgbox when i click on the webbrowser control on my form.. how do i do it? why isnt there a mouseclick event in the webbrowser method listbox?

Member Avatar for Teme64
0
139
Member Avatar for aveao

I need some help. I have been problems getting my programs to recognize variables outside of the subroutines even if I make them public. Ive been able to work around the problem until now. I am working with arrays. It wont let me declare the array outside the subroutine and …

Member Avatar for Teme64
0
261
Member Avatar for olsofty

I am trying to access one colum in one row in a SQL Database. Dim qryDraw As String = "SELECT LastDD FROM dbo.comDate Where DrawNo = 2 " Dim cmdDraw As New SqlCommand(qryDraw, Connection) Dim pagesize As Long = 0 Dim adpDraw As SqlDataAdapter = New SqlDataAdapter(qryDraw, Connection) Dim dataSet …

0
38
Member Avatar for ranitsaha

[code]Imports System.Data Imports System.Data.OleDb Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim conn As String = "Provider=Microsoft.Jet.OLEDB.12.0;Data Source=G:\Visual Studio Projects\test\dbtest.accdb;Persist Security Info=False" Dim cmd As String = "SELECT * FROM Table1" Dim adapter As New OleDbDataAdapter(cmd, conn) Dim topics As New DataSet("Table1") …

Member Avatar for c0deFr3aK
0
294
Member Avatar for KikoLtd

Hello guys! I am a new member so if a make a mistake please don't shout at me :P I want to know how can i edit and delete a registry key in visual basic 2008 and also how to add a subfolder. I don't have any code so please …

Member Avatar for crazyhorse09
0
51

The End.