Forum: C# Oct 3rd, 2006 |
| Replies: 3 Views: 11,404 try storing it in your context.session.
ive always prefered to just hit the database again for each page.
just grab only enough each query to fill one page.
EDIT: sorry i just realized, that you... |
Forum: C# Jul 7th, 2006 |
| Replies: 3 Views: 4,626 You should just beable to bring the label control to the front. which i think does nothing more then changes the order of the controls being added to the form, in a way which the label should be... |
Forum: C# Apr 19th, 2006 |
| Replies: 3 Views: 9,291 i didnt really read your code so im not sure what your doing with the data. but anyways im sure all you need is ms office installed on the machine for it to work.
if all you are doing is reading... |
Forum: C# Mar 7th, 2006 |
| Replies: 9 Views: 6,331 do this with sql and it will save you a lot of trouble, here is a quick example assuming the table has a column called price and one called quantity
SELECT Price, Quantity, Price * Quantity AS... |
Forum: C# Dec 9th, 2005 |
| Replies: 5 Views: 8,093 static void Main(string[] args)
{
}
make your Main look like this and "args" is a string array of all the args passed |
Forum: C# Nov 1st, 2005 |
| Replies: 9 Views: 6,243 if my code didnt work, then you prly have access errors, because this worded perfectly for me.
oh well that code was originally from ms site. anyways what formay are you saving it in? |
Forum: C# Nov 1st, 2005 |
| Replies: 9 Views: 6,243 i dont know why i am giving you such simple code but here
for(int i = 0; i <= listBox1.Items.Count -1; i++)
{
SaveThis = listBox1.Items[i];
}
it could also use foreach but i... |
Forum: C# Nov 1st, 2005 |
| Replies: 9 Views: 6,243 well if you havent figured it out yet its because you are trying to use a selection in list before a selection can even be made.
in order to use the selection you need to click on it.
i fixed... |
Forum: C# Nov 1st, 2005 |
| Replies: 9 Views: 6,243 are you trying to create a file that outlook can read? or is this copying the contacts for a different use? |
Forum: C# Sep 29th, 2005 |
| Replies: 4 Views: 3,586 they need 2.0 unless you setup your project to develop only in 1.1 |
Forum: C# Sep 21st, 2005 |
| Replies: 26 Views: 7,161 it looks like this thread went off topic, do you still need help printing? |
Forum: C# Sep 7th, 2005 |
| Replies: 2 Views: 2,761 im not sure why it would say its missing.
the MouseMoveEventArgs is a seperate class so makesure its not in your main forms class, that would be one guess why its not working, cause it needs the... |