Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~7K People Reached
Favorite Forums
Member Avatar for 404notfound

In my access database, I have a table for the master list of items discussed in a training meeting. If a certain item was discussed in a meeting, then the value in the database is 1, if it was not discussed, then the item is 0. I'm trying to get …

Member Avatar for tinstaafl
0
460
Member Avatar for 404notfound

I've been sitting here staring at this code for a day now, and am quite ready to light my computer on fire and throw it into oncoming traffic. The error I recieve is: System.Data.OleDbException Syntax error in INSERT INTO statement. I think everything is spelled correctly. I'm expanding on a …

Member Avatar for 404notfound
0
236
Member Avatar for 404notfound

I'm looking for a way to do report printing. I understand CrystalReports is probably my best bet, but I can't find anything that relates to the way these reports need to look. My program is meant to record trainings for my company's supervisors. It has several text boxes that contain …

Member Avatar for 404notfound
0
157
Member Avatar for 404notfound

I have an Access database I've set up with two tables; Employee info, and earnings records. I'm supposed to generate a report based on those who worked a certain ammount of hours, or those who worked three months in a row. The hours part was easy, the 'who worked more …

Member Avatar for Santanu Das
0
218
Member Avatar for 404notfound

Not sure where else to put this, I apologise in advance if its in the wrong place. I'm trying to migrate a program from one server to the next without having to completely re-edit every configuration file. To do this, I need to enable the sql SA account, which I …

Member Avatar for hericles
0
231
Member Avatar for 404notfound

I'll be completely honest, I haven't googled this very much as I have no idea of how to put it. So a nudge in the right direction will be most appriciated. I have two forms and two tables. The first form has a series of text boxes that collect information …

Member Avatar for cgeier
0
164
Member Avatar for 404notfound

This is the code I have and I am trying to get rid of the error but there is always an error after error even with me looking it up: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lesson02 { class Rectangle { private double length; private …

Member Avatar for Mike Askew
0
81
Member Avatar for 404notfound

I need to export data from access into a tab delimited file. The hard part is two of the fields need to be 0 filled. I have looked all over access (and google) on how to do this, and can find plenty of import information, but no export information.

Member Avatar for LastMitch
0
79
Member Avatar for 404notfound

Work has informed me that I need to run reports a certain way. I need to pull data out of the system database, and compile a report. I have a database with 3 tables. Personel (contains employee data), Q1 (1st quarter data) and Q2 (second quarter data). I'm trying to …

Member Avatar for G_Waddell
0
116
Member Avatar for 404notfound

Today, I had a new project dropped on my desk and was informed that by the end of the week, I need to have exported the entire payroll into a new format. it exports to csv, which is then imported into access, and needs to be exported into a csv …

Member Avatar for 404notfound
-1
244
Member Avatar for 404notfound

Using Access, in one table, I have Social Security numbers and earnings/tax records, and in the other table I have Social's and emp id's. I'm trying to get an output to a tablegridview, and using the following query line. SELECT AcctNum,SUI,SDI,FICA,Medicare,State,Fed,TotWages FROM tblEarnings INNER JOIN tblPersonel On tblEarnings.SS=tblPersonel.SS I've been …

Member Avatar for JorgeM
0
5K
Member Avatar for 404notfound

I'm following a [tutorial](http://www.codeproject.com/Articles/16951/Populating-data-from-a-CSV-file-to-a-DataGridView), which was going great, until I actually ran the project and got an error: > No row can be added to a DataGridView control that does not have columns. Columns must be added first. this error occured at: Me.DataGridView1.Rows.Add(Splitline) I've searched all over but can't find …

Member Avatar for tinstaafl
0
275
Member Avatar for 404notfound

I found a tutorial online that so far has been aswesome. I downloaded the access db and so far can read and browse through it. However, when I try to write back to it (btnSubmit_Click), nothing happens. All other buttons work fine, I can still browse, and I get absolutely …

Member Avatar for XEN0
0
176
Member Avatar for 404notfound

When reading from an access database, my code is like this: Private Sub PaidNavigateRecords() If ds.Tables("Paid").Rows(inc).Item(1) <> "" Then txtRanch.Text = ds.Tables("Paid").Rows(inc).Item(1) Else txtRanch.Text = "" End If If IsDate(ds.Tables("Paid").Rows(inc).Item(2)) = True Then txtDate.Text = ds.Tables("Paid").Rows(inc).Item(2) Else txtDate.Text = "" End If If ds.Tables("Paid").Rows(inc).Item(3) <> 0 Then txtInvoice.Text = ds.Tables("Paid").Rows(inc).Item(3) …

Member Avatar for 404notfound
0
141