VS 2008 Building A DE Form

Jul 27, 2010

The company I work for has given me VS 2008 to build a Data Entry form. They want me to put check boxes, which I've done and now they want a drop down list that when selected pulls up different check box items that populate into a different screen. I'm new to this, but don't feel it should be that hard.

View 5 Replies


ADVERTISEMENT

VB 2008 Form Building Error - File Download Application?

Jul 22, 2011

I designed an application to download a file from the Internet onto a selected location on the local computer. This application too, has a form-building error.Debug Error Message: An error occurred creating the form. See Exception.InnerException for details. The error is: Object reference not set to an instance of an object.

[Code]...

View 1 Replies

VS 2010 Set Form Size Longer But After Building Project Form Re-sizing

May 1, 2010

I'm trying to set form size longer, but after building the project form resizing.

View 1 Replies

Building An Email From Text Fields In A Form

Nov 30, 2010

I need to build a rather simple form for collection some information from our membership. It has 4 Text boxes and one Submit button. The contents of the text boxes need to be emailed to a fixed Address and a fixed Subject. Before I got to fancy I tested the form to see if the email portion worked which I did get the email but not all the data. I am trying to stick with VB as I had experience with it years ago.

My problem seems to be in building the string for the body of the message. Trying to use StringBuilder but my syntax is messed up somewhere. The Fields that I have are: Name, Phone, Email Address: and Comments. They are named in the form as txtName, txtPhone, txtEmail and txtComments. [Code]

View 5 Replies

Building Webpage Out Of User Inputs Off A Form

Jun 25, 2009

I was trying to find examples of how one would make a webpage using asp so that I could have the visitor enter information on a form and then when they hit submit it will be attached to my webpage indefintaly and any visitor can view it.

View 4 Replies

Building A Form With Just A Combo Box In It That Contains A List Of Other Forms That Made?

Jan 17, 2010

I'm building a form with just a combo box in it that contains a list of other forms that I made. I want to program the combo box so that if a user opens it and clicks on "Web Browser", that form with the combo box will close and the web browser that I made will open. Another example is that if a user selects "Media Player" from that combo box, the form with the combo box will close and the media player that I made will open. How would I program the combo box to do this?

View 3 Replies

Building A Simple Form Which Allows The User To Update The Data On It?

Apr 23, 2009

I am building a simple form wicht allows the user to update the data on it.I use this

Imports System
Imports System.Data
Imports System.Data.OleDb[code].....

View 8 Replies

Building A Web Browser Using The WebBrowser Control In A Normal Vb Form?

Feb 4, 2009

I'm building a web browser using the WebBrowser control in a normal vb form. I would like to add an option where the user can view the source code for the page like in internet explorer.

View 1 Replies

Option Strict Disallows Late Binding For Behind Form Code Building Grid Columns?

Sep 18, 2009

Option Strict disallows Late Binding for behind form code dynamic building grid columns VS2008 VB.NET ASP.NET 3.5 bf.DataField = strDataField(ForCount)

[Code]...

View 1 Replies

VS 2008 Building A 32bit App Instead Of A 64bit App?

Jan 3, 2011

I'm running Win7 64bit, but I want the applications I make in VB .NET (.NET 3.5, 2008) to be 32bit instead of 64bit. Is there any way to achieve this?

View 12 Replies

VS 2008 Building An Autocrop Detector?

Aug 27, 2010

Ok I have a picturebox and i have loaded an image in it that has black bars on all sides.I am trying to find out how to detect where the black ends and then display that pixel number. I wanted it to start reading the pixels from the MIDDLE of the picturethe line represents the picture i used picture.width /2 so that it uses the pixel for the x axis in the middle

Dim TempBitmap As New Bitmap(picture.Image)
Dim MyColor As Color
Dim topcrop = Nothing

[code].....

View 10 Replies

Building A 2008 Express Project Referencing A Dll

Jun 5, 2009

I have written a program in VB.NET 2008 Express that references a .NET managed dll. I simply added a reference to the dll to the project. I then 'Imports' the dll at the beginning of the program and then can use it. Everything works fine when I am running the program in debug mode (and it uses the dll as intended), but as soon as I go to build the project I get an errors that it "Could not reslove this reference" and "Namespace of type specifier in the Imports 'ModbusTCP' doesn't contain any public member or cannot be found." The dll is located in a different location on my hard drive to the project location, but this was referenced when I 'added reference'.

View 2 Replies

VS 2008 Building A Program From Binary Code

Oct 2, 2009

I'm just curious to know if there's any way to build my app. from its binary code. I just saw the thread of creating a program builder and got curious.

View 1 Replies

VS 2008 Building File Install Automatic?

Aug 10, 2009

company buy some program(create by VB.net) It's easy for customer install it. in program have SQL Server 2005,crystalreport viewer,.net fremework.. i know only use shell for run exe file, but the program install all automatic, it's set registry and database name for you, you do only click next for install.My boss want to me do it but i don't know how to do.

View 3 Replies

.NET In Visual Studio 2008 On Vista 32bit Building A WSP?

Jun 9, 2009

I am trying to build a WSP file in VS2008 on my VB.NET project. How would I go about doing this? I can find a lot of plugins for C# but not VB.NET.

View 2 Replies

VS 2008 Program Building A Program?

Apr 5, 2009

Im trying to see if you can make a GUI that can edit the Source code of your progam and then building it as an .exe..Say you have a login program and you wanted to change the password, All you do is go to the "Edit My Account" and go to password and then enter your old password and in the next textbox your new password.Then you would click save and it will ask for a directory and save it as .exe. And when you would start your newly compiled program you can used the program you just entered in.

View 4 Replies

Asp.net - Building A WebService In ASP 4 - VB

Aug 31, 2011

I have a search engine that will use a webservice to search through my database to find 3 specific things. I don't even know if it will work like this, but I have a dropdown list on my main page to select Product, Feature, Description. From what the user selects, the webservice should then go to an if statement to use the correct SELECT statement and find results for the search.

Will someone help me figure out how to fix what I've written to make it work? Please don't be too critical, I don't have a lot of experience. I have also been researching SQL Injection because I have a lot of code that is vulnerable so keep that in mind when you look at my code.

I can't get the blue squiggly lines to go away that are underneath the DropdownList1.Value instances on the WebService page.

WebService:

<WebMethod()> _
Public Function GetCompletionList(ByVal prefixText As String, ByVal count As Integer) As String()
Dim Feature As String = DropDownList1.Value
Dim Description As String = DropDownList1.Value
Dim Product As String = DropDownList1.Value

[CODE]..........................

Default.aspx page - Here I need the dropdownlist to tie to the database somehow.

<asp:ScriptManager ID="ScriptManager1" runat="server">
<Services>

[CODE]........................

View 2 Replies

Building .exe With Program?

Dec 12, 2009

I was looking at making a program which can then build other seperate .exes, is this possible? For example the user types their mail username/password into my program then this builds a seperate one which just connects to their mail with their username/password.

View 2 Replies

Building A CRM Application?

Jun 21, 2010

I am doing a project on the CRM application which sending and receiving sms using the vb.net language. I am no where to conclusions of my project because I could not build the application. I have found many examples but the problem some of the examples some uses the sms gateway or the AT commands. I could not differentiate which one to use? I have a dateline to finish this project of mine.Most of the example does not look like a CRM application.

View 2 Replies

Building A Web Forum

Jun 16, 2009

I have a little bit of trouble figuring out why I am getting these error messages. Here is the error messages and then the code will follow behind it.The code is taken directly out of the book "ASP.NET 2.0 Everyday Applications for DUMMIES". [code]

View 6 Replies

Building An App Using VB 08 That Access The Web?

May 11, 2010

Wanting to know the best method to use if building a small app that will intereact with the web using usernames and passwords, captcha's etc.....

I'm thinking Window's Form but can you use captcha's in a windows form?

View 2 Replies

Building An Array?

Apr 28, 2011

relatively new at using Visual Basic, and I'm trying to make a decathlon calculator. My question is how do I make a blank array, and after each person is done calculating their decathlon score it adds the persons name, school,(which are both in text boxes) and score(which is calculated into a textbox) to the blank array

View 4 Replies

Building Database App With Vb?

Sep 3, 2009

I am trying to write simple database application and try to understand ADO.net as well.say I have 2 table

1. table emp with the following field (empId, empName, empPhone, salary, deptId)

2. table dept with the following field (deptId, deptName, deptLocation, deptManager)

emp table is link to dept table via deptId.so I try to build a form with 2 data grids the top will be dept data grid and below it is emp data grid.I try to do this with out using the wizard so I know the flow and understand how to link together step by step.

in the form load section:

dim conn as new system.data.sqlclient.sqlconnection(connectionString)
dim daEmp as system.data.sqlclient.sqldataadapter
dim daDept as system.data.sqlclient.sqldataadapter

[code]....

I am kind of stuck on what to do next, I think the next step is to creat dataview from my understanding before mapping it to the datagrid, but on data grid documentation it say it can only filter datarow, it can't filter data column on the dataview.

I would like to be able to display deptName, deptLocation, no the whole column on the table to data grid, and when user select a record from dept datagrid then the employee info (empname, empphone, empsalary) is display on the second grid (again not the whole emp column table).

the user can update, add or delete emp record from employee data grid by clicing on update button, on update button callback routine I need to put something like.

daEmp.update()

from what my understanding then I need to create update, insert and delete routine and attach it to daEmp so the data grid know how to sync with sql server, so when the user say add new record since the data grid doesn't have all the field display, i.e deptId column is not on data grid, how the table know what the dept id would be? I'd like to learn without the wizard 1st since once I know how everything is link then it is easier to debug since the wizard create lots of file and it's everywhere which make it very hard to understand what is happening for someone new to vb & ado.

View 6 Replies

Building EXE's, CodeDom

Sep 21, 2009

Okay Is there a way In vb.net to create an exe from a predefined script, for example rather than writting the methods and subs into the codedom code could I just have a textbox that I could put a script into and then have that built? (obviously omitting button presses and things.)


Im not worrying about ui's at the moment just and exe (hello world style )

Are there any tutorials for this?


Code: None

View 2 Replies

Building F# Library?

Aug 21, 2011

Possible Duplicate:Building F# library to be used in C#

Let's say I have the following function.
let rec fib n =
match n with

[code].....

View 1 Replies

Building Webpages Is It Possible With Vb

Mar 26, 2011

building webpages is it possible with vb

View 2 Replies

Getting Error While Building

Oct 10, 2010

While I'm trying to build a solution after I've changed a little in its code it gave me an error and even when I've removed the code the same error appears.

"Unable to find manifest signing certificate in the certificate store." (That is the Error and it either stop building or run last successful build.)

View 2 Replies

VB - Building A GUI CAD Software ?

Aug 16, 2009

I'm interested in building a GUI CAD software in VB.NET, but I don't know from where to begin. I've looked in Audesks online help but there are no instructions, neither tutorials on the net for building something like this. When I'm saying GUI, I mean a work area, where you can use blocks from autocad and build a plan/circuit/PCB or other stuff like this.I'll be glad to see is this possible, and what kind of components can be used.

View 3 Replies

VS 2008 - Building A Game - (text Based) "if Main.currentpowerget.text <= "7" Then ...."

Aug 5, 2009

Im having a hard time getting this to work. Im building a game in .net vb (text based) and where it says "if main.currentpowerget.text <= "7" then ...." when that textbox is between the numbers 1-9 it works but as soon as it hits the number 10 it stops working and shows the msgbox that says you ran out of power.

Private Sub robbank_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles robbank.Click
If Main.currentlevel.Text >= "3" Then

[CODE]..............

Here is another code from the same game im making just another event that works just fine when the text box is above and below 10

Private Sub attackaboy_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles attackaboy.Click

[CODE].......................

View 2 Replies

.net - Building A Project In VB2008?

Oct 15, 2011

I have a problem with building a project. When I build a project and when I create .exe file, I cannot run it on other computers.There is an error: "The application failed to initialize properly (0x0000135). Click OK to terminate the application.".ca i have any chance to solve this error without installing framework 3.5

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved