20,899 Topics

Member Avatar for
Member Avatar for uLp.aArOn

I Want to make my program search and delete.. Iam Using MS ACCESS 2010 Public Class main Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click AddProd.Show() Me.Close() End Sub Private Sub TblInventoryBindingNavigatorSaveItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Me.Validate() Me.TblInventoryBindingSource.EndEdit() Me.TableAdapterManager.UpdateAll(Me.InventoryDataSet) End Sub Private Sub …

Member Avatar for jireh
0
290
Member Avatar for ms061210

**PLEASE HELP ME. THIS CODE WILL RETRIEVE THE SEQUENCE YOU MADE. AND WILL OUTPUT IN THE TEXBOX IN THE NEXT FORM. BUT MY PROBLEM IS THAT IT DOES NOT RETRIEVE/GIVE THE GENERATED SEQUENCE. FOR SHORT NO OUTPUT T__T . PLEASE HELP.** Public Sub getJO() Dim oradb As String = "Provider=OraOLEDB.Oracle; …

Member Avatar for Begginnerdev
0
183
Member Avatar for jtok

Background: I am using Visual Studio 2005 Standard SP1 to create an ASP.NET website that accesses an SQL 2005 database. I am using vb.net as well. I am passing an ID in a query string from one page to the next, where I retrieve it using an SQLDataSource. The data …

Member Avatar for G_Waddell
0
2K
Member Avatar for ct_hunny

im trying to split the value using "," and it success but how i want to remove "," symbol at the of my array data example of my problme 1,2,3,4,5, expected result 1,2,3,4,5

Member Avatar for Reverend Jim
0
3K
Member Avatar for Thermalnuke

Hey guys Just learning about List Boxes, I have a quick Question Im Creating the Program where I have 3 text boxes and when I hit the add button it adds them to the list box off to the right if they already Exist in the list box then it …

Member Avatar for Thermalnuke
0
959
Member Avatar for paoi00

how to insert picture to print using PrintPreviewDialog.? I will be Printing a template of an ID and print it. thank yo.,

Member Avatar for Begginnerdev
0
62
Member Avatar for Nasirjan
Member Avatar for Begginnerdev
0
85
Member Avatar for vivekanandaan

Can somebody suggest one free barcode OCX which can be used for Vb.net projects . Regards Vivek

Member Avatar for deceptikon
0
64
Member Avatar for paoi00

is there any easy way to generate an ID in PrintPreviewDialog or other way. i dont get the idea of CrystalReport . and including the picture in the ID that will be generated. Please Help ME.

0
77
Member Avatar for roachae

I need to combine several TXT files, the number of files may vary, and the data contents of the files will need to be in specific places in the combined file. Some of the data files will be similar as will contain values at different time steps. Each of the …

Member Avatar for G_Waddell
0
182
Member Avatar for jontennyeah

i have a 1 textbox namely txtplate. I want the textbox that can input only Plate number. (example WXY 123 (with space and the 3 letters are in uppercase)

Member Avatar for G_Waddell
0
436
Member Avatar for HibaPro

i have this two tables fields: table1 (BOQSectionsAndParts_ID,BOQSection,BOQPart,ProjectNO) BOQSectionsAndParts_ID is a primary key table2 (BOQItemEntry_ID,ProjectNO,BOQSectionsAndParts_ID,BOQ_Item) BOQItemEntry_ID is a primary key and BOQSectionsAndParts_ID is a forign key. this is a sql server in my vb forum : i view the BOQ sectin as a combobox what i need is when the …

Member Avatar for G_Waddell
0
221
Member Avatar for alvr

Hi, I want to show one table of my access database in a ListView. I tried with [this](http://www.daniweb.com/software-development/vbnet/threads/332383/displaying-columns-from-ms-access-table-to-a-listview-in-vb.net#post1420774) but DataSource isn't a property of ListView. My table have two colums: "food" and "kilograms". Food column is the primary and unique. I use VS2010 and .NET Framework 4.0

Member Avatar for G_Waddell
0
118
Member Avatar for jontennyeah

i have a listview with subitems namely Name,Age,gender,position, type. The positions are Driver Conductor and Inspector. I want to do is when i Select the name in the listview If his position is driver AND his attendance is IN, the name will be add in the combobox.add.item . if the …

Member Avatar for G_Waddell
0
144
Member Avatar for jontennyeah
Member Avatar for ahmedyakson

Please i need help in this situation.I have a button two combo boxes with some values in it on a form and i want to icrement them when they are selected. Button_Click For example If cmbbox1.Text = "Mathematics" and cmbbox2.Text = "L1" Then let label1 view the result as L1maths/100,L1maths/101 …

Member Avatar for Dili1234
0
162
Member Avatar for mitch_oso

Hi Everyone I'm using a comboboxcolumn and comboboxcell into a DataGridView, and everything is correct but i don't have idea how do I put text on combobox, I trye many things but nothing works :S This is my code Dim column2 As New DataGridViewComboBoxColumn Dim column3 As New DataGridViewComboBoxColumn Dim …

0
71
Member Avatar for jontennyeah

i just add a form but when i try to run my project it is an error and saying "A startup form has not been specified" what will i do? thank you

Member Avatar for jontennyeah
0
182
Member Avatar for razekc

Hello: Using this post http://www.daniweb.com/software-development/vbnet/threads/358691/textbox-autocomplete-from-database (thks andeepparekh9) build a autocomplete. Now i need show the id of my seleccion on the autocomplete on another textbox. Some idea? Thanks Regards

Member Avatar for razekc
0
181
Member Avatar for paoi00

I wish to save and retrieve image in access 2007. in our search module , if employee number typed, it could retrieve all information of the employee including the image saved in database(?) if this can be happen?

Member Avatar for Begginnerdev
0
207
Member Avatar for paoi00

how can i upload an image with the same size of the picturebox? can someone help me ? :)

Member Avatar for nmaillet
0
137
Member Avatar for paoi00

i have one table containing 2 columns namely Designation and Department. i want from choosing on DeptnameCB the DesEmpCB will display the corressponding designation to the department chosen. i have this code as of now. Dim strsql = "select * from DesignationEveryDepartment where Department = '" & DeptNameCB.Text & "'" …

Member Avatar for paoi00
0
158
Member Avatar for sean.downes.96

Hello again, How do i do the code where i have a list box with certain names in. Also a textbox called Username. When someone enters the name into the textbox to get access to a form, how do i make it so it only allows the names from that …

Member Avatar for sean.downes.96
0
140
Member Avatar for lulu79

Hi, How can i convert my column with timespan dataType (Eg: 04:04:45 ) to DateTime in HH:mm:ss format (Eg: 04:04:45)? Currently I can convert the column to datetime (Eg: 10/2/2012 4:04:45 AM) but I only want the time (Eg: 04:04:45 ). Can someone help me please...

Member Avatar for brylle
0
9K
Member Avatar for jontennyeah

i have a listview with subitems namely NAME Age and Position. The positions are Driver, Conductor and Inspector. I have 3 textbox namely CountD, CountC, CountI. What i want is if i Click the Name in the listview where the position is driver, the CountD.text will display 1 and if …

Member Avatar for Begginnerdev
0
812
Member Avatar for mohana_61

hey, i need to insert a row into datagridview meanwhile it has to be updated in the database(backend) using oledb. thanks inadvance

Member Avatar for Begginnerdev
0
159
Member Avatar for jontennyeah

I have a 1 datagridview in form1 with columns namely ID,Name_, Address, Birthday, Age, Gender,Status, Position, Driver License , Attendance, and password. The position is a combobox where the items are Driver, Conductor and Inspector. In form2 i have 3 listview namely Ldrive, Lcon, Lins. The problem is this , …

Member Avatar for jontennyeah
0
161
Member Avatar for aidan.fowell.5

Hello, I am trying to create a currency converter, but when I press 'convert' it get the error message: Index was outside the vounds of the array. Here is my code: Imports System.IO Imports System.Text.RegularExpressions Public Class Form1 Private Sub doCalculate() ' Need the scraping Dim Str As System.IO.Stream Dim …

Member Avatar for SaintQJ
0
175
Member Avatar for Dili1234

Dim bill As integer=textbox14.text Module1.billno = bill Form18.txtbillno = Module1.billno Value of Type 'Integer' cannot be converted to System.Windows.Forms.Textbox

Member Avatar for Dili1234
0
193
Member Avatar for Oneryavuz

i trying to make subliminal message program so i mean i will write "I am Happy" then i should show this message for 1 frame per second. how can i use 1 frame or 1 frame time. i cant use timer couse i can see my message even i set …

Member Avatar for Begginnerdev
0
71
Member Avatar for khair.ullah

AOA. Dear friends i am a final year student of BCS . I am working on project with Title "HOSTEL MANGMENT SYSTEM" . I am confuse in project i.e what type of form it need. So if any one have idea about this project so plz help me. Thanks in …

Member Avatar for Begginnerdev
0
114
Member Avatar for kiggundu.stulla

calculate the cost, sales tax and total cost ion the list box. cost for each chair is 1200 and sofa 200 while sales tax is 16%

Member Avatar for Reverend Jim
0
43
Member Avatar for shahidul263
Member Avatar for guru_iyer

I've a DataGrid Control in my application and a button. When i click a button it should display the contents of the Logins table in the DataGrid. For this I've coded the following, but its giving me an error "Rowset is not bookmarkable.". I've searched a lot, many suggestions include …

Member Avatar for AndreRet
0
1K
Member Avatar for paoi00

Hello again! :) How can i put a Captured Image by a Webcam in picture Box? I'm Using VB.Net 2008 I dont know what to do. Thanks in advance!

Member Avatar for paoi00
0
338
Member Avatar for mohana_61

hey frds, help me i don know the how to copy the content from one table to another(in access) using oledb,dataset.. for clear understanding i gve eg., there r 2 tables, the 1st table with the fields studentID,StudentName, Course,Year and 2nd table with the fields studentID,StudentName, Course,Year,marks,grade. here i want …

Member Avatar for mohana_61
0
343
Member Avatar for hoosier23

I'm retarded and can't find this on the net. How do I pass data that i've stored in a variable via a textbox into a MessageBox? [CODE] MessageBox.Show("Name:", BName, MessageBoxButtons.OK, MessageBoxIcon.Information) [/CODE] When I run this, BName does not show the name. BName is a name from a textBox BName.

Member Avatar for Rakesh jack
0
547
Member Avatar for xtianpark

gud evening sir/maam , can i ask for a help regarding on how to change the mouse pointer using image in vb.net to look like its a mouse cursor ... i dont have any idea with this stuff cause we havent discuss this yet and i need it by tommorrow …

Member Avatar for TnTinMN
0
352
Member Avatar for zawpai

Hi all, I am using vb.net2003. I have one solution and different projects under its. But, I don't know how to declare a varibale for many projects and use it? Can anyone show me how to do it? Thanks and regards, zawpai

Member Avatar for zawpai
0
135
Member Avatar for discovery-power

Hi All, I sware I am loosing the will to live, I have tried to accomplish this by my-self for about 2 weeks now and I am still at square one, I prey someone can help me. I am writing an application for booking conference rooms and I need a …

Member Avatar for pratik65
0
334
Member Avatar for Rolandwizy

sms sever that can send and recieve based on the content of recieved message. I want help on a sample application(student results via sms) 1.Student send thier student id via phone 2.sms application recieve the message,scans through the message to extract the stud. id 3.scans through the database with the …

Member Avatar for Begginnerdev
0
41
Member Avatar for debayanmitra

[CODE] Dim mDocDtT As Date Dim mDtPeriod as Integer = 4 mDocDtT = DateAdd(DateInterval.Month, mDtPeriod, mDocDtT) mDocDtT = Format(mDocDtT, "yyyy-MM-dd") [/CODE] But the codes are not working the date is still in #01/27/2011# format I want it in yyyy-MM-dd format Please help!!!

Member Avatar for debayanmitra
0
188
Member Avatar for tin.marcelino

HI! i got this problem in choosing selection property for combobox, here is the situation I have two items in the combobox(Dog,Cat ) if a user choose either of the two it will perform an action like data input then save etc. here is my sample code if combobox.selecteditem <> …

Member Avatar for G_Waddell
0
116
Member Avatar for Master Mascus

Hey guys avtually i have a registration form ( a table of 3 columns, the name, textbox and the validations ). Everthing is working fine but i would like to do something which i am unable to do.. Actually in one row there is 2 validations (RequiredFieldVal and CompareVal), the …

Member Avatar for Master Mascus
0
222
Member Avatar for Gus_19

I can't figure out how I can change the font style/color of a specific bookmark. Every time I try something, I keep getting the null exception error and and I can't figure out where I'm going wrong in referencing the bookmark itself. Here's what I've got so far in creating …

Member Avatar for Begginnerdev
0
352
Member Avatar for jontennyeah

i have a 1 datagridview in form1 and 1 listview in form2. the records in the datagridview are from my ms access also in my listview the records (items/subitems) are also in from the ms access. i do some deletion of records in the datagridview using vb.net. My problem is …

Member Avatar for Begginnerdev
0
182
Member Avatar for aidan.fowell.5

I would like to make my own youtube application, that pulls all the latest videos (in order) from my channel, or anyone elses (Maybe a textbox to the channel?) I would like it to display the latest video in a large WMP Control (Unless you think theres a beter way) …

Member Avatar for aidan.fowell.5
0
103
Member Avatar for themaj

I'm trying to read a DBF file into a DataSet and then write a selected number of columns to a MDB. I've been successful reading the DBF into the Dataset with this code; Public Sub sReadDbf(ByVal dbffile As String) mydbfConn = New System.Data.OleDb.OleDbConnection mydbfConn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _ sAlohaPath …

Member Avatar for themaj
0
196
Member Avatar for artemix22

i'm just curious, can we make scrolling text without using a Timer? (like scrolling text for news in television)

Member Avatar for Gé48
0
193
Member Avatar for jontennyeah

I have a listview in form1 containing the subitems, Plate number, Engine_Number, Chasis_Number, LTFRB Case_Number and Color. I transfer the Plate number in the listbox in form2. Also i transfer the Item in the listbox to textbox1. My problems is this, How i display the other subitems (Engine_Number, Chasis_Number, LTFRB …

Member Avatar for Gé48
0
164

The End.