Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~5K People Reached
Member Avatar for jlivvers

Hi, hopefully this is the right place to post this. Whats the best way to handle a many to many relationship in a windows form? The relationsip involves a student having multiple courses and vice verca. However each student would be viewed individually and it would just need to list …

Member Avatar for skatamatic
0
107
Member Avatar for jlivvers

Hi, apologies if this isn't the correct thread for this question! I'm running some web tests on a couple of sites, simple stuff to gauge average page load times etc. However the internet provided here is through a cache and makes the test fail in most cases because the test …

0
97
Member Avatar for jlivvers

Hi whats the best MS developer certification currently? I've noticed that the MCAD is mostly retired now. thanks!

Member Avatar for C#Jaap
0
158
Member Avatar for jlivvers

Can anyone out there recommended a decent piece of software for testing a .net web app? Just need to test simple things like logging in, submitting basic data. Thanks in advance!

0
140
Member Avatar for jlivvers

Hi I have a c# console app that calls some access 2007 queries. One of these queries throws an error "Undefined function 'MonthName' in expression". I understand that some functions that are available in VBA cant be called from c# and if i comment out the 'monthname' function the call …

Member Avatar for jlivvers
0
248
Member Avatar for jlivvers

Hi, I have inherited a project from a colleague and have an intersting problem. The project attempts to deserialize a type 'Client' into a new 'Client'. [CODE] Client mainClient = null; using ( stream = File.Open(resourceFilePath, FileMode.Open)) { BinaryFormatter bin = new BinaryFormatter(); mainClient = (Client)bin.Deserialize(stream); } [/CODE] this throws …

Member Avatar for kvprajapati
0
125
Member Avatar for jlivvers

Hi, I have recently finished a windows desktop application for a client that connects to a sql server database. Throughout development while the server instance was on my local machine the application and server communicated fine with the connection string below [CODE] <add name="myString" connectionString="Data Source=myServerName;Initial Catalog=&quot;myDbName&quot;;Integrated Security=True" providerName="System.Data.SqlClient" /> …

Member Avatar for BitBlt
0
204
Member Avatar for jlivvers

Hi, im my c# windows application i have some reports involving currency. However the way to set the format that I've seen "C" sets the currency symbol to the dollar sign instead of the GBP sound which is the one i need. I've checked my systems regional settings and they're …

Member Avatar for Ketsuekiame
0
171
Member Avatar for jlivvers

Im doing some reports on a c# winforms app ive been working on. I want the reports to generate upon a mouseclick (IE not be visible all the time) and the best way i can see to do this is use the mouse click to open a popup form with …

Member Avatar for jlivvers
0
122
Member Avatar for jlivvers

hi, im about to finish a winform app for a client and I was wondering about the most common ways to handle connection strings. I know you can change the path from within appConfig to whatever the path may be on the destination server but are there any established approaches …

Member Avatar for kvprajapati
0
135
Member Avatar for jlivvers

Hi, I have a c# windows form app that hanldes memberships. When the user click "new member" a second form pops up where the user can enter in the new data using the details view. When complete the user saves and closes this second form, returning to the original form …

Member Avatar for jlivvers
0
170
Member Avatar for jlivvers

Hi, in my project I need to allow the user (admin user) to have the ability to run custom queries on the database. Ive done this pretty simply whwer the user enters their query and the reults are set to a datagridview. It would also be great however to allow …

Member Avatar for sandeepparekh9
0
225
Member Avatar for jlivvers

Hi, I have a windows form application that is designed to monitor payments made within agreed timescales. Once a timescale has passed any payments that are outstanding will get assigned as arrears. What I need to decide is the best way to handle the task that checks if the due …

Member Avatar for mcriscolo
0
226
Member Avatar for jlivvers

Hi, in my windows form application Im using a microsoft report to generate receipts that show amounts, dates and userId's for those that have taken the payments. What I need to do firstly is where the userId's are displayed currently (as a foreign key) i'd like to show instead the …

Member Avatar for kvprajapati
0
161
Member Avatar for jlivvers

Hi, is there an accepted emthod to print a selected row in a datagridview? I've done some reading and gotten as far as printing a page via the printform but I wondered can you drill down into certain rows or certain datagridviews? thanks,

Member Avatar for Mitja Bonca
0
149
Member Avatar for jlivvers

Hi i'm using a table adapter.insert() method to add new data to my table and i need to get hold of the id of the inserted row. I've read around and seen that the most popular way to do this is with SELECT @@IDENTITY as Value but im not sure …

Member Avatar for kvprajapati
0
1K
Member Avatar for JDenham377

Hi, I am trying to disable a button until a condition is met in my program. I have two numeric up down boxes and a button, but I want to have the button disabled until the two numeric up down boxes have a number higher than 0 in both of …

Member Avatar for Mitja Bonca
0
940
Member Avatar for jlivvers

Hi is there an accepted way to calculate the number of times a specific day would come round in a given timespan? For example if we have 32 as a variable that represents the number of weeks I would then need to find out how many times the first of …

Member Avatar for jlivvers
0
123
Member Avatar for jlivvers

Hi, I have a windows form that adds new entries to a dataset via a datagrid using the updateAll method. Im passing in an id from another form and id like to specify this in the sata thats being written to the dataset. So by default the id would already …

Member Avatar for Mitja Bonca
0
171
Member Avatar for jlivvers

Hi, I have a c# windows app with a formTab on one of the forms. What I'm trying to do is pass the id of one datasource into the parameter of the query for another datasource on another tab. So effectively when the row containing the id field is selected …

Member Avatar for nick.crane
0
163
Member Avatar for jlivvers

Hi, I'm looking to find out how to force a refresh on a datagrid in a windows app. On a mainForm the user clicks a button to add a new record. This opens a new window. When the user has entered the data they click save and close which should …

Member Avatar for kvprajapati
0
96