19,728 Topics

Member Avatar for
Member Avatar for arthur404

I was asked to write a simple program to display an "Access Denied" pop-up when users attempted to run game programs on their workstations. No problem. Wrote it, installed to the workstations replacing sol.exe, winmine.exe etc. with a renamed version of the .exe. No problem. Now I am asked to …

0
82
Member Avatar for Aston_Villan

Hi First of all ive read the assignment message from admin. Understood. So ive got this flight booking assignment and i need some help with it. Im from a design background so im still getting to grips with programming. i completed a java principles unit so ive got my foot …

Member Avatar for Yomet
0
72
Member Avatar for fieryidris

i have been making a program using vb2005 but now it is done i have found that it will only work on a computer with .net framework 2.0beta which is currently only in windows vista and not in windows xp unless you download it from microsoft. because of this i …

Member Avatar for fieryidris
0
113
Member Avatar for shylesh

I have a combobox in my form which shows the employee names.When I select one of the names I want to get the employee id which is stored in the database corresponding to the employee name I have selected.Thanks in advance

Member Avatar for jalvarezca
0
93
Member Avatar for bradford68

Ok, I have had a hard time trying to understand this next evolution for programming in VB Net. I successfully completed a Mortgage Calculator last week and thought, hey maybe I can do this programming. So went to the next chapter and understood some of it but I am having …

Member Avatar for bradford68
0
210
Member Avatar for CHUDMASTER

I need help in my VB class making a cash register. I know I'm supposed to use modulus and integer functions as well as nested if's, but am having a hard time coding it. If you haven't figured it out yet, this is my first real attempt at coding in …

Member Avatar for CHUDMASTER
0
166
Member Avatar for emman

Using Windows XP Visual Styles with Controls on Windows Forms “ms-help://MS.MSDNQTR.2003FEB.1033/dv_vstechart/html/vbtchUsingWindowsXPVisualStylesWithControlsOnWindowsForms.htm

Member Avatar for emman
0
486
Member Avatar for little_imps

When i run the program at the WebApplication.. the error is "An unhandled exception of type 'System.ExecutionEngineException' occurred in mscorlib.dll" Web service Code: Dim xmlKeys As String 'A combination of both the public and private keys Dim xmlPublicKey As String 'The public key only Dim PlainTextBArray As Byte() 'The plaintext …

0
85
Member Avatar for rich97

Hi, i need some help. ok..im an A level computer science student and im looking for a suitable language to do my project in, last year i did the entire project in php/mysql however this year i am looking to do a smililar thing only as an executable file i …

Member Avatar for wally_lawless
0
103
Member Avatar for nitric

Hi, I'm new to VB.net. I'm trying to write an application to auto login to Linksys router. Basically the user would need to input in his username and password and the application would login automatically. Is the a way to do it? Thanks

Member Avatar for BugMan
0
127
Member Avatar for wimis174

I'm trying to find out if anyone knows how I can make a sales, returns, and commisions variables reusable components in Microsoft VB .NET :cry:

0
52
Member Avatar for shad

Hi Everyone, i was thinking of creating an online chat system for students as a final year project, i desperately need ideas on how i can go about my project. Any idea you send to me will be very helpful.Thank you

0
79
Member Avatar for DwarFStrider

Hello, I'm starting a VB.NET project which lists shares from clients on a server program. When a client connects, he uploads his own shares + credentials to the server, and downloads all shares which are already listed on the server from previous clients. Now, sending the shares is doable with …

0
77
Member Avatar for mkwang

Hi all, Any one know is there a WIA similiar driver can be used in VB.net for Window 2000 to access web cam or digital camera. Thank and best regard

0
62
Member Avatar for Robert Walker

The following code is me loading a listbox with a table. I have no problem with the retrieving data if data has information, but if the field is empty I get a error. how can I check the field in a listbox first for DBnull? '***1. load listbox from table …

0
120
Member Avatar for erikkl2000

Hello, This is my first go at implementing an interface for a connection, reader, ect.. and it is also my first go at a three tier design,Although i have been studing this for some time now tring to put all of these pieces togeather. I feel like i am getting …

0
98
Member Avatar for Hennie23

I got my treeview to work-but I cant seem to get the email to work! Please help!

0
49
Member Avatar for Hennie23

Im quite new with programming in vb.net! I have to hand in a project before monday where I have to create a treeview linked to a database tables! Eg. all the rooms and the bookings linked to them. Can someone please help! Code please!! I'm using access-dont ask why-but its …

0
59
Member Avatar for sheel9493

Hi I m a final yr comp Engg student. I m working on .NET,i m usin mssql with ASP.NET,VB.NET for creatin online banking site.I hv a problem: Hw i can [B]record the transaction made [/B]by client for report generation. shal i use database for [B]report generation[/B]?if yes then hw? otherwise …

Member Avatar for sheel9493
0
153
Member Avatar for hippychic43

Hi, I am finishing up an application in VB.NET at the moment, and am working on making the interfaces perfect, however I don't know how to go about setting the properties for the items on the interface so that if the window is resized, or the user has a larger …

Member Avatar for hippychic43
0
161
Member Avatar for SLG29

I have a form which has a listbox, 5 textboxes and a datagrid, what I'm trying to do is when a user double clicks a row on the datagrid this then displays another datagrid on the second form with the details of the orders placed from the Items Table for …

0
107
Member Avatar for kyakobi84
Member Avatar for kyakobi84
0
145
Member Avatar for erikkl2000

Hello all i am in need of some help with a datatier layout. I understand the gui, bussinessRules, but i am really not making any progress on the data tier. i have been tring to get a grip on the this one for over a week. I completely understand the …

Member Avatar for cpopham
0
135
Member Avatar for mcupryk

click on modify button? Public Sub DoModify() Dim bm As BindingManagerBase = Me.DataGrid1.BindingContext(Me.DataGrid1.DataSource, Me.DataGrid1.DataMember) ===>>> Dim dr As DataRow = CType(bm.Current, DataRowView).Row <<<=== Dim editform As New EditTransOverride(dr) Dim retval As DialogResult = editform.ShowDialog() If retval = DialogResult.OK Then bm.EndCurrentEdit() Try Dim substr As String = dr.Item(4) substr = substr.Substring(0, …

0
66
Member Avatar for mcupryk

If you want to insert DON'T do this Dim dr As DataRow = CType(bm.Current, DataRowView).Row Dim addform As New AddTransOverride(dr) Dim retval As DialogResult = addform.ShowDialog() the above will modify the current row you are on, but do somethiing like this Dim dr As DataRow = bm.addnew 'or bm.new I …

0
47
Member Avatar for mcupryk

How do I pass a two character for dr.Item(4) in the following: ExecOnTransOverride.ins(dr.Item(1), dr.Item(2), dr.Item(3), dr.Item(4), dr.Item(5), dr.Item(6), dr.Item(8), dr.Item(7), DateTime.Now, dr.Item(7), dr.Item(9)) + dr.Item(1) "1234555" {String} Object + dr.Item(2) "CANADJ" {String} Object + dr.Item(3) #9/22/2005# {Date} Object + dr.Item(4) "ACCOUNT" {String} Object + dr.Item(5) "N" {String} Object + dr.Item(6) …

0
78
Member Avatar for Robert Walker

I have a list of 20 textboxes on a form. each textbox is a record in a table. I want to loop through the textboxes if posible: for x = 1 to 20 sStmt = "update list_table set" sStmt += " docu = '"+??textbox(x)??+"'" sStmt += " where id_code = …

Member Avatar for Robert Walker
0
89
Member Avatar for TennKV

Hello, I am having a problem with adding a row to my DataSet. I think I know what the problem is, but not how to correct it. I have several bound text boxes that fill from the DataSet. The first column is a numeric and the next several are text …

Member Avatar for Bharati Krishna
0
213
Member Avatar for achonk81

Hello I need some help I setup my Web application to print from a WebServer. I have setup the account so that it can print correctly. However, it can only print if the printer is connected to Win98 but if the printer is connected to Win2000/XP, it throws an error: …

Member Avatar for achonk81
0
106
Member Avatar for mcupryk

I have a stored procedure and it is not saving the values in the table. How can I view that the stored procedure is saving the values. Private Sub DoSave() Dim ConnectionString As String = System.Configuration.ConfigurationSettings.AppSettings("FinSolMainDBConn") Dim connfinsol As New System.Data.SqlClient.SqlConnection(ConnectionString) Dim strsql As String Dim adapter As New SqlDataAdapter …

Member Avatar for Letscode
0
191

The End.