What Should Choose For Source Of Data
Sep 11, 2011
In our class in Visual Basic, we are required to turn in a payroll system with time monitoring. And I have prepared already the GUI interface of my system. My question is what kind of collection of data should I use, considering the employee population of 30 (that's what our instructor have told us.)Should I use:
a. Arrays to store them like every field (employee number, employee last name, etc.) has its own array.
b. Sequential files for me to store them in a text file (and if in the text file, could I still retrieve the records inside that text file.)
c. A Database.
View 3 Replies
ADVERTISEMENT
Jun 1, 2011
I have been trying for days now how to create a process to the user to easily create a connection to any installed data types they have installed. I have found an example right inside vb2008. I never use this because I code my own connections, but this would be real nice if I could include it or duplicate it.
View 1 Replies
Nov 8, 2011
I'm writing a console application in vb.net using which i'm trying to print pdf documents from a specific directory. I'm able to print the PDF files but my problem is that the PDF files vary in Page sizes and the printer fits them to the default page size which is set to letter.
My questions is, Is there a way to enable "Choose Paper Source by PDF page size" using vb.net for the printer settings.
View 2 Replies
Feb 10, 2012
I refreshed my data sources to include additional items from the SQL Server databases and it appears that my entire data source from my VB.NET project disappeared.I am using Entity Framework. I may have clicked on something wrong, not quite sure. Unfortunately I can't recreate the Data Source without creating a new Entity and Data Model.I can delete the entry in the App.Config file and recreated it, however things aren't quite right.Is there a way that I can recreate my Data Source from the entry that is in my App.Config file...since that appears to have remained intact.BTW, I can go to my Data Model and successfully refresh from there, however my project isn't connecting to the database so I have quite a number of errors until I can get reconnected.
View 4 Replies
Oct 11, 2010
I have an Access database and I want to view on a datagridview specific rows. For that I used the following :
CasesBindingSource.Filter =
"OfferDate Between #1/1/1997# And #12/31/1997#"
Cases is the table, OfferDate a field of the table wich is DateTime type.
When I use Between operator I get the following error :The expression contains unsupported operator 'Between'.
View 2 Replies
Aug 16, 2010
I have the first form and create 5 checkboxes which are connected to my db. Whichever checkbox is checked and the value will be inserted into the db (value: 1; data type: tinyint).And now, the second form will pull out the data base on the which checkbox is checked when the button is clicked. But for somehow i got stucked at the following code.
The first form:
Dim nValue As Boolean
If chkbox5.Checked = True Then
nValue = 1
[code].....
View 1 Replies
Feb 25, 2012
I have a Windows Form in a VB.NET program with a property of "TournID". The ID will be passed in when the form is created by a button pressed. Here is the property stub:
[Code]...
View 1 Replies
Nov 15, 2011
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim asm As String
asm = ComboBox2.Text
cmdOLEDB.CommandText = "SELECT * FROM sale "
cmdOLEDB.Connection = cnnOLEDB
Dim ab = DateTime.Now.ToString("MM/dd/yyyy HH:mm:ss")
Dim dr = cmdOLEDB.ExecuteReader
[CODE]...
I choose one record from combo box... that is bind from name after that when i select another it gives error
View 1 Replies
Oct 15, 2010
After display list of data in combo box, next I would like to choose the data from the combo box and display all the information from the chosen data to texboxes , the data from combo box was link from my database (ms access).
View 3 Replies
Dec 20, 2011
I am currently working on a family project which is based on "Who Wants To Be A Millionaire?" show. There is a huge diffrence between the show and my project. My project is a christmas edition and the goal is not to get money or something, since I will not add it... Erhmm... Let me get to the point. I have already designed a layout and scripted some things. I have about thirty questions but I do not want them to always spawn in the same array, if you know what I mean. I want the program to randomly choose one of those thirty questions and NEVER choose the same question in the same program run. By the way, there are four options on my project: A, B, C and D. I have got everything, I just need a code.
View 3 Replies
Jul 28, 2009
i have a question in vb about inside a data grid view i need to create a combo box...
View 1 Replies
Feb 22, 2011
Modifying data with the ListView's EditItemTemplate by programmatically settings its DataSource property and calling its DataBind method. I don't have option to use data source control for ListView. All ListViews are bound with data from code-behind. So, I have to handle the Edit/Update mode of ListView manually. [Code]
View 2 Replies
Jul 7, 2011
I'm trying to connect a VB application (2010) to an MS Access DB by adding a data source from the data menu but I receive this error message "The connection you selected uses a local data file that is not in the current project.Would you like to copy the file to your project and modify the connection ?
If you copy the data file to your project, it will be copied to the project's output directory each time you run the application" and the options are (yes , No , Help)
If I choose Yes I will not be able to make the application 'device independent ' since it will not be copied under the bin , and if I choose No , changes won't be applied to the DB
View 5 Replies
Apr 23, 2010
how to use the VS 2010 IDE tools in a way the Microsofties didn't specifically intend. But since this is something I immediately tried without success.
I have defined a .NET 4.0 WPF Application project with a simple class that looks like this:
Public Class Class1
Public Property One As String = "OneString"
Public Property Two As String = "TwoString"
[Code]....
The expected result was that "OneString" would appear next to "One" and "TwoString" next to "Two" in the running window.
The question is: Why didn't this work? What will work instead? If I put bindings in a DataTemplate, it works. Blend, with its sample data stuff, implied that this should work, but it doesn't.
View 1 Replies
May 10, 2010
I have 5 combo boxes that need to show the same list of items that come from a single dataset table. I have managed to bind the datatable to the combo boxes no problem at all.. but when I run the application and select an item from one of the combo boxes all the others change to the item I selected. After some research I believe that this problem is something to do with using the one datasource so I have tried assigning the dataset datatable to 2 different variables and used them as datasources for 2 of the comboboxes but the same still happens.
A work around to this I can see is to call the same methods and SQL select statements 5 times over to get individual datasources for each combo box but this doing that sounds crazy to me. how I can get around this easily? Code snippet below shows 2 combox boxes and their datasources. I'm using VS2005, .Net 2
ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList
ComboBox1.DataSource = AllergyListDataSet.Tables("ListOfAllergies")
ComboBox1.DisplayMember = "Condition"
[Code]....
View 3 Replies
Mar 21, 2010
can data reader be used as a data source for a grid control?
View 5 Replies
Nov 4, 2009
I have a combo box with a data source. This box shows one column of a table and allows me to select one item.Next, I have an ordinary text LABEL that I need to put text from another column of the item selected above.I tried to set the data binding field of the label, but this grabs only the first row or data and shows the selected column. That is nice, but I can not figure out how to update the selected selected ROW when the combo box item is changed.In this case the combo box lists a bunch of inventory parts. When I select a specific part, I need the change the text in a label to show the manufacturer. (like a sub-form). This same behavior will be used in several other places, but the relationships can cascade.
View 4 Replies
Jun 2, 2010
i'm got this sql query code in dataset designer
SELECT pkt.fldPackageID, pkt.fldPSID, pkt.fldQuantity, pkt.fldQuantityUsed, pkt.fldRetail, pkt.fldPK, ps.fldName
FROM tblPaketRow AS pkt INNER JOIN
tblProdukDanService AS ps ON ps.fldID = pkt.fldPSID
WHERE (pkt.fldPSID = @param)
I'm trying to display the results in datagridview,i drag from the data source in vs 2008..I can't figure out to do that.I use this code to set the @param on form_load event.
Me.TblPaketRowTableAdapter.JoinTable(SalonDataSet.tblPaketRow, modCommon.s)
View 10 Replies
Aug 14, 2009
I have a bit of code that reaches out and grabs a series of rows from SQL Server DB. I perform an inner join to get some related table data. In the process I get returned the user id of the creator of the data. I then want to pass this into a query to get back a full name. I am having no luck figuring out how to do just that. If I use the data visualizer I can see the name I am after, I cannot figure out the call to extract it
Bindingsource1.DataSource = GetData("Select * From PURCHASE_ORDERS WHERE PURCHASE_ORDER_NUMBER =" & REQ_NUM.Text)
.DataSource = Bindingsource1
[code].....
View 4 Replies
Sep 25, 2009
I am creating a database for Employees. In that I have some issues. I am trying to bind my data using data source. In the list box properties I set
lstemp.Datasource = Employeedatabase
lstemp.Displaymember = "EmplyeeName"
lstemp.Valuemember = "EmplyeeId"
I want to get my employee Id for displaying data in text boxes. How can get the data of the highlighted employee name in the list box to text boxes
View 1 Replies
Sep 25, 2009
I am creating a database for Employees. In that I have some issues.I am trying to bind my data using data source. In the list box properties I set
lstemp.Datasource = Employeedatabase
lstemp.Displaymember = "EmplyeeName"
lstemp.Valuemember = "EmplyeeId"
I want to get my employee Id for displaying data in text boxes. How can get the data of the highlighted employee name in the list box to text boxes
View 1 Replies
Jun 2, 2011
I am doing project in 2010...I am trying to add new data source.
[code]...
View 1 Replies
Mar 18, 2012
Iam try addingnew data source by using the Wizard but it gives me massage error (unexpected error has occured)
View 11 Replies
May 9, 2011
I'm creating a gridview using an objectdatasource and it works fine when pulling all records. But when I want to use the selectCountMethod the grid shows no values. I Step through the code and my getInvoices (gets the requested data) returns data and the getInvoicesCount (gets the total record count). But then when I go through the rowdatabound of the gridview there's nothing in there and no data displays. Here is my code to set the objectdatasource. Any reasons why it wouldn't work or something special that needs to be done for getting the selectcount to work? [code]
View 2 Replies
Apr 28, 2009
Trying to add a new data source, I create a new connection string and attach an Access DB to it, pick which tables I want, and it either gives me an error saying it can't create the data source or it creates it and puts this garbage in the data set designer:[code]
View 2 Replies
Jun 7, 2011
I used to use listboxes, but now I use listviews. I can't use data source anymore, and I am looking for an alternative.
View 4 Replies
Dec 19, 2007
am using visual studio 2008 professional edition and MS SQL Sever express 2005 SP2.i clicked Data then Add New Data Source choosed Database then click Nextwhen i clicked on New Connection the Data source configuration wizard disappears.
View 14 Replies
Jul 9, 2009
I'm trying to connect to a data source i followed these steps: From Data menue ==> 'Add new Data Source'. Select 'Database'. Press the 'New Connection' button. but the wizard screen disappear without giving any messages.
View 3 Replies
Feb 5, 2010
Data Source=YOUR_SQL_SERVER
;
I dont understand what i insert in YOUR_SQL_SERVER.
[code].....
View 5 Replies
Jun 5, 2011
Why when I drag the datagridview in my designer, they don't give me a selection on which data source?
View 13 Replies