20,278 Topics

Member Avatar for
Member Avatar for BilalAKhan

Hi, I have written a program which reads the text from the text file cleans it for some specific letters or phrases and then saves it in another text file. I am having a problem in rewriting the processed or cleaned data (after it has removed some phrases and characters)onto …

Member Avatar for codeorder
0
1K
Member Avatar for neh555

I create one web application in vb.net then tell me can i run this web application on another computer where visual-studio not installed. please reply as soon as possible.....

Member Avatar for Pgmer
0
246
Member Avatar for Jigs28

How to display data in datagridview starting from the record which we pass at runtime? In C# For example, there is 10 rows in a table. When i run the app i'll pass 5th record's value so it should show all data of table starting from 5th row.

Member Avatar for M.Waqas Aslam
0
212
Member Avatar for markdean.expres

Guys I have this kind of problem where in I have a listbox and two buttons. Each of my button is labeled UP and DOWN. When I press UP, the current item in my listbox will be moved one level (or index) up and when I press DOWN button the …

Member Avatar for markdean.expres
0
3K
Member Avatar for kerek2

Hi All, I'm stuck regarding to grab connection from app.config file...i'm surf many type and kind to do it..but still can',t.....i need to connect into two database (oracle n firebird).....how to do this..hope u all can help me....tq

Member Avatar for Jigs28
0
152
Member Avatar for ilmkidunya

hey Dear members i want to learn asp.net but i am little confuse which is best for beginner any easy is it VB or C#

Member Avatar for ilmkidunya
0
449
Member Avatar for rahman86

hey everyone in daniweb. i have a problem here. let say i have 2 arrays one is a and second is b. how do i compare each of them and insert to new array c? i do it like this [CODE] Dim a As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" Dim i As …

Member Avatar for rahman86
0
248
Member Avatar for archelle

Hello people in daniweb.... i was stucked in doing my project here.. i nid to create a program that assigns a student to the available section. So.. i want to populate my data in datagridview using mySql as database.. while populating these data.. the datagridview should create a new checkbox …

Member Avatar for Pgmer
0
150
Member Avatar for kothaisaravan

Hi, In my project there is a need to take screenshot and save it to word file automatically. Existing System: [LIST] [*]Open the website where log in exists for different resources. [*]Login for every resource and take a screen shot of their page and paste it to word file. Save …

Member Avatar for kothaisaravan
0
272
Member Avatar for thinkingofaname

hi im using the chart to make a graph the graph is generated through user input i was wondering about a couple of things 1. how to change the line thickness for an individual generated line or all of the lines 2. how to change the colour of an individual …

Member Avatar for thinkingofaname
0
175
Member Avatar for aishapot

I have a field in my tables where the guidance counselor would have to type in Notes about the student. For example, Alex is in Grade 1 and he have an offense wherein he pushed his classmate, that note will be saved in the database. And then when he turned …

Member Avatar for Reverend Jim
0
118
Member Avatar for deolalkar_pooja

Hi.... I am trying to connect sql server with vb.net in Visual Studio 2008 with foll. code.... but it is having problem....what is the problem? Please tell me.... 1. I created "publication" databse. In table i took 2 columns...fname and lname and fill the records... 2. I took DataGridView onto …

Member Avatar for adam_k
0
188
Member Avatar for khizer03

how to reset the existing password(topsecret)with a new password by using the "replace" keyword in the below code shown [CODE] Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click System.Diagnostics.Process.Start("chrome.exe") …

Member Avatar for codeorder
0
212
Member Avatar for sandeepparekh9

hi.. guys.. just joined daniweb.. and this is my first post this one's very easy... i suffered a lot to find this simple program.. i hope you guys like it.. here is a quick preview of it...[URL="http://lh4.ggpht.com/_blnOia1d0Pw/TQs3BhaCClI/AAAAAAAACco/3vPqJIlyG-M/gmail%20client.JPG"]http://lh4.ggpht.com/_blnOia1d0Pw/TQs3BhaCClI/AAAAAAAACco/3vPqJIlyG-M/gmail%20client.JPG[/URL] 1. First Of All Add the Following Line to your code: [CODE]Imports System.Net.Mail[/CODE] …

Member Avatar for kothaisaravan
0
451
Member Avatar for jillwimmersbloo

Hi everyone, I am trying to make a program for my boyfriend to use at his business to keep track of cover charges. I am so lost as to what loop structure to put in and where to put it. If someone could take a look and please let me …

Member Avatar for Reverend Jim
0
128
Member Avatar for jbutardo

Need help, I need to know on how can VB.net validates the format of each cell on the excel file that it opens, for example, the first row should only be numeric, or cannot be null, is it possible that vb.net can check it before it inserts it in the …

Member Avatar for jbutardo
0
548
Member Avatar for PF2G

Hi, I'm doing an app that adds info to a MySQL BD [CODE] Imports MySql.Data.MySqlClient Public Class curso_add Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click OpenFileDialog1.Filter = "Ficheiros de Imagem |*.jpg;*.bmp;*.png;*.gif" OpenFileDialog1.FilterIndex = "2" OpenFileDialog1.Title = "Escolha uma imagem..." OpenFileDialog1.InitialDirectory = "C:\" OpenFileDialog1.ShowDialog() End Sub …

Member Avatar for PF2G
0
231
Member Avatar for bluehangook629

Im trying to put current system time in YYMMDD format but having problem with day function. is Day() which returned day of month in VB6 not available in VB.Net? If I want to get the current day of month, how would I do that? [CODE] Dim dt As Date Dim …

Member Avatar for bluehangook629
0
114
Member Avatar for amf101

Guys I need help. I am doing a system (project) entitled “Automatic Examination Scheduling System”. This system as it stressed in its title, aim to automate the assigning of proctors, rooms and times to subjects. So it must be triggered with only one button all at once. I have tables …

0
73
Member Avatar for prathapsv3

I am using vb.net.I'll be using a datagridview which is bound to a datasource.Normally it'll load datas in first row(row(0)) to n th row,i want to load datas only from second row.my question is how to left the first row blank.Someone please help..

Member Avatar for prathapsv3
0
181
Member Avatar for aishapot

Hello again! So now i can save the picture in the database, now i have to retrieve it. this is my code for the saving of the picture, [CODE]Dim ms As New MemoryStream() studentpic.Image.Save(ms, studentpic.Image.RawFormat) Dim arrImage() As Byte = ms.GetBuffer ms.Close() Dim strFilename As String = lblfilePath.Text.Substring(lblfilePath.Text.LastIndexOf("\")) Dim cnn …

Member Avatar for prathapsv3
0
3K
Member Avatar for andrewp3498

Hi I am looking to create a program to help with my running training. It would be like a diary where I could select a date using either a DateTimePicker or MonthCalendar and then enter text into the textbox based on that date. Can you please help me with coding …

Member Avatar for keiztech
0
249
Member Avatar for albright_family

Ok so I am using the default WebApplication in Visual Web Developer 2010, and applied Paladine's example of Simple ASP.Net Login page. And it is working, but only to some extent. I am sure I am just missing something INCREDIBLY simple, but after looking at this code for 2 days, …

Member Avatar for albright_family
0
401
Member Avatar for jaimin4829

Public Sub getconcom_name() ledcmbsrcitem.Items.Clear() Try obcon.cmd.CommandText = "select con_id,f_name + ' ' + m_name + ' ' + l_name as 'name' from contact where type='company'" obcon.con.Open() Dim dr As SqlDataReader dr = obcon.cmd.ExecuteReader Dim oDataSet As New DataSet() While (dr.Read) ' MsgBox(dr.Item(0)) ledcmbsrcitem.Items.Add(dr.Item(1)) End While Catch ex As Exception MsgBox(ex.Message) …

Member Avatar for hericles
0
157
Member Avatar for discovery-power

Hi All, I always have trouble with this every time I create a desktop app which needs to update data from a database. So, I have created and coded my form to load data into a data grid view control, I can add data to the data grid view and …

Member Avatar for discovery-power
0
115
Member Avatar for archelle

Hello guys... I just want to know how to close current child form and opens another? In vb.net Thanks in advance....

Member Avatar for codeorder
0
165
Member Avatar for nndung179

Hello everybody !!! I have a problem that. When I back up using "Microsoft.SqlServer.Management.Smo". It works perfect on my PC. But when I bring it to another PC. It doesn't work at all. Please give me some help!!! The file attach below [ATTACH]23303[/ATTACH] Thanks for your helping !!!

Member Avatar for lolafuertes
0
180
Member Avatar for GBignell

Hi, can anyone advise how to make a button run code only while it is pressed? Basically I have found this code on the Net for changing the system volume, but you have to keep clicking on the buttons to change the volume. I want to be able to hold …

Member Avatar for GBignell
0
182
Member Avatar for vasim jada

dear frnds, i got vs 2008 proffessional edition i want to instal but unable and shows error report for temp file in local settings folder n

Member Avatar for vasim jada
-1
112
Member Avatar for discovery-power

Hi All, I need some help in understanding something. I have an existing database and I make some changes in Sql Server Management Studio, how can I adapt those changes in the Visual Basic project. As an example if I change a table name in Sql Server Management Studio how …

Member Avatar for discovery-power
0
93

The End.