20,284 Topics

Member Avatar for
Member Avatar for Kshiteesh

Dear all, I am a Bachelor in Information Management Student(BIM) in Nepal. I have got an assignment to develop an Address management software in my internship. I am a begineer of VB.net. Please suggest me how should I develop it. Should I develop a network or only a desktop program. …

Member Avatar for arjunsasidharan
0
77
Member Avatar for preetham.saroja

can anybody plz,, give m the code to create menu& submenus in webform using vb.net... plz its very urgent(i searched in google,but i couldnt get it!!)..

0
65
Member Avatar for Himadri_Pal

hi there, I'm trying to connect to an already running instance of 'AR System user tool (BMC Remedy user tool) from a VB application. I'm using following code snippet. Set App = GetObject("C:\Program Files\AR System\User", "Remedy.User.ServName") I have added references to use the COM object for the User tool. When …

Member Avatar for Himadri_Pal
0
28
Member Avatar for Ayodele

I want to know how i can detect whether an office file (word, excel, etc) are password protected without having to open the file itself. The interop in vb .net has a function called HasPassword but you have you open the document first. Please help!

0
43
Member Avatar for olodu

[COLOR=green]Hi Guys,[/COLOR] [COLOR=green]I have a problem loading data into datagridview control. I have 2 forms with datagridview on both forms. when the user selects a record in form 1, the related records is then displayed in the datagridview in form2. These all works fine but my problem is, when the …

Member Avatar for QVeen72
0
213
Member Avatar for pkhussain

[COLOR=#000000]Hello,[/COLOR] [COLOR=#000000] I am using widows media player 10 (WMP sdk 10 is installed in my pc) and vb.net 2005, when I play clips from my play list for first few times it plays well but after some time all the video clips from my play list are playing in …

Member Avatar for pkhussain
0
267
Member Avatar for reyhan12

i have a datagrid that has null values. I can't remove the column because there are rows that does not have a null value. is it possible to replace cells with null values to blank spaces? i know this is possible to do manually by selecting a cell and changing …

Member Avatar for arjunsasidharan
0
68
Member Avatar for vamas
Member Avatar for arjunsasidharan
0
71
Member Avatar for nadith_cs

wht's Visual studio 2005 team edition sp1; wht's visual studio 2005 .net (RTM) wht's better among those two;and wht's the newest plz help me...i wanna buy one of these

Member Avatar for Ancient Dragon
0
87
Member Avatar for vamas

Hai Friends, I am new to vb.net. Now i am using Vs.net 2003 to develop my vb.net programs. I have 3 textboxes,one button and one datagrid (not datagridview). when i click this button, the entries in the textbox has go to datagrid. similarly, i will do multiple entries in the …

Member Avatar for vamas
0
106
Member Avatar for olodu

[COLOR=green]Hi All,[/COLOR] [COLOR=green]I need help in passing data from a datagridview control to textboxes control. When the user doubleclick a value from a datagridview control in form1, I want the record to be displayed in the texboxes of form2. How do I go about coding this? Any help would be …

0
63
Member Avatar for gagansharma7

Hello[U],[/U] In VB.NET 1.1 and using WinForms, I am exporting the data displayed in a listview to a CSV file but I am specifying the filename and location while conversion. I need a dialog box where the user can choose the location to save the file. I know I have …

Member Avatar for iamthwee
0
89
Member Avatar for RaviK

Hi, Iam New to VB.NET 2005. I have question in my project I have 2 forms and Ihave created a class which has a property in it from one Form1 I key in some data value and I set the value to the property and I close the form. Now …

0
67
Member Avatar for sunilkumartp

Hello ppl, I need to access the GPS Device on my Pocket PC from a Desktop application.Can Anyone help me with a code or give an idea as to how i should go about it. (VB.NET or C# code).

0
68
Member Avatar for manoshailu

Suggest any best book for the ASP.NET with VB 2005 to develop myself in developing the projects

Member Avatar for manoshailu
0
251
Member Avatar for mrjoli021

I need to be able to work with decimals. Right now I am trying to subract 2 decimals and it is not working I input 10.89 in price and 11 in change the result should be 0.11, but I get 0.19999999 Why? price As Double Dim change As Double Double.TryParse(Me.TPrice.Text, …

Member Avatar for arjunsasidharan
0
84
Member Avatar for Alphard

Public Class Form1 Inherits System.Windows.Forms.Form Private Sub Option2_Click(Inter As Integer) '#Region Public Sub New() MyBase.New() 'This call is required by the Windows Form Designer. InitializeComponent() 'Add any initialization after the InitializeComponent() call '#End Region End Sub 'Form overrides dispose to clean up the component list. Protected Overloads Overrides Sub Dispose(ByVal …

Member Avatar for arjunsasidharan
0
81
Member Avatar for dmmckelv

I have created a few projects in VB.NET using Visual Studio 2005. I am wondering how to package the applications for deployment. I would like to be able to upload applications to a server or e-mail the apps. An .exe file with an icon would be great. How do I …

Member Avatar for arjunsasidharan
0
112
Member Avatar for Alphard

Public Class Form1 Inherits System.Windows.Forms.Form Dim total1 As Integer Dim total2 As Integer Dim total As Integer Private Sub Button7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button7.Click TextBox1.Text = TextBox1.Text & Button7.Text End Sub Private Sub Button15_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button15.Click [B] 'i …

Member Avatar for manal
0
67
Member Avatar for iamthwee

Hullo. I need some help with this one. Ok, I want to create an xml file of all my mp3 files on my home pc.:S I am using the code as follows:- [code=vb] Public Class Form1 Dim myWriter As New System.Xml.XmlTextWriter myWriter = New System.Xml.XmlTextWriter("C:\music_stuff.xml", Nothing) With myWriter .Indentation = …

Member Avatar for iamthwee
0
311
Member Avatar for preetham.saroja

[COLOR=#0000ff]Dim[/COLOR][COLOR=#000000] str [/COLOR][COLOR=#0000ff]As[/COLOR][COLOR=#000000] [/COLOR][COLOR=#0000ff]String[/COLOR][COLOR=#000000] = "select * from table1"[/COLOR] [COLOR=#008000]'try to write "select distinct * from table1" [/COLOR][COLOR=#0000ff]Dim[/COLOR] con [COLOR=#0000ff]As[/COLOR] [COLOR=#0000ff]String[/COLOR] = ConfigurationSettings.AppSettings("preeconn") [COLOR=#0000ff]Dim[/COLOR] cmd [COLOR=#0000ff]As[/COLOR] [COLOR=#0000ff]New[/COLOR] SqlCommand(str, [COLOR=#0000ff]New[/COLOR] SqlConnection(con)) cmd.Connection.Open() [COLOR=#0000ff]Dim[/COLOR] da [COLOR=#0000ff]As[/COLOR] [COLOR=#0000ff]New[/COLOR] SqlDataAdapter(str, con) [COLOR=#0000ff]Dim[/COLOR] ds [COLOR=#0000ff]As[/COLOR] [COLOR=#0000ff]New[/COLOR] DataSet da.Fill(ds, "table1") [COLOR=#0000ff]Dim[/COLOR] maxrws [COLOR=#0000ff]As[/COLOR] [COLOR=#0000ff]Integer [/COLOR][COLOR=#0000ff]Dim[/COLOR] i …

Member Avatar for preetham.saroja
0
102
Member Avatar for kylcrow

I am going to be writing a test script soon, and I will be using vbscript. Can someone give me an example of a test script?

0
63
Member Avatar for kylcrow
Member Avatar for kylcrow
0
89
Member Avatar for JBI_UK

Hey, i have been trying to find a solution of how to do this. Basically i want either a label or something that when you load up the form it shows the users current username like on the About boxes of windows programs or something towards that it says "This …

Member Avatar for JBI_UK
0
131
Member Avatar for jatinder_44

hi to all i an want to learn vb.net can i get any tutorial hlp from which i can learn.u r reply will be appricated.thank u

Member Avatar for waynespangler
0
72
Member Avatar for DanielWuVB

Hi ! can someone tell me what I did wrong with the code that I attached when I declare 'Option Strict on' ~ seems doesn't work. Thanks !

Member Avatar for DanielWuVB
0
66
Member Avatar for mrjoli021

I am new to VB I am a c++ programmerr. I know in c++ when you declare a variable as an int it will return a whole number. In VB I am delaring a variable as an interger and when I do my calculations it comes back with a decimal. …

Member Avatar for StrikerX11
0
125
Member Avatar for Slade

How do I go about creating a windows application that converts strings to sha1 encrypted? All I want this program to do is have a user type in their password, click a command button "Convert" and have a label come up with the now SHA1 encrypted string. NOTE: THis is …

Member Avatar for taylorjpt
0
644
Member Avatar for vinothsiva

TO retrieive all user account name which belongs to User and having the Administrator rights.by using VB.Net code. In windows server machine 1.Right click any Partition (eg. D:,F:..)click properties. 2.click the security tab. then u will get information of all user access .In That SYSTEM is one user there. whats …

Member Avatar for cutepinkbunnies
0
112
Member Avatar for ptaylor965

I have a SQL table with a list of forms (frmForm1, frmForm2) i have a listbox that fills from this table and i would like it to call the form in the 'FormToCall' Column How can i call a form if i only know the form name at runtime?

Member Avatar for ptaylor965
0
129

The End.