Oh boy... double trouble :laugh:
Sharing my 33 cents worth on SSRS, .NET, Sharepoint and more... My Blog: http://dotnetsme.com My book on client-side reporting services with visual studio: http://www.apress.com/book/view/9781590598542
Oh boy... double trouble :laugh:
Sharing my 33 cents worth on SSRS, .NET, Sharepoint and more... My Blog: http://dotnetsme.com My book on client-side reporting services with visual studio: http://www.apress.com/book/view/9781590598542
Programmer: I stress out every time I deploy to production Psychiatrist: Go enterprise. U rarely commit & even then u can blame someone else :-D
Sharing my 33 cents worth on SSRS, .NET, Sharepoint and more... My Blog: http://dotnetsme.com My book on client-side reporting services with visual studio: http://www.apress.com/book/view/9781590598542
I like the Acceptance phase ;P
Sharing my 33 cents worth on SSRS, .NET, Sharepoint and more... My Blog: http://dotnetsme.com My book on client-side reporting services with visual studio: http://www.apress.com/book/view/9781590598542
The 5 stages of debugging... Have fun...lol https://devhumor.com/media/the-five-stages-of-debugging[^]
Sharing my 33 cents worth on SSRS, .NET, Sharepoint and more... My Blog: http://dotnetsme.com My book on client-side reporting services with visual studio: http://www.apress.com/book/view/9781590598542
Good one :laugh:
Sharing my 33 cents worth on SSRS, .NET, Sharepoint and more... My Blog: http://dotnetsme.com My book on client-side reporting services with visual studio: http://www.apress.com/book/view/9781590598542
Wish there was no sugar or salt, coz Dr. is telling me to avoid both :laugh:
Sharing my 33 cents worth on SSRS, .NET, Sharepoint and more... My Blog: http://dotnetsme.com My book on client-side reporting services with visual studio: http://www.apress.com/book/view/9781590598542
A. Because they don't C#... :laugh:
Sharing my 33 cents worth on SSRS, .NET, Sharepoint and more... My Blog: http://dotnetsme.com My book on client-side reporting services with visual studio: http://www.apress.com/book/view/9781590598542
To best of my knowledge you can build web and smart client using reporting services from VS 2005 development platform. Since you are using ASP3.0 which I assume not asp.net, then I guess try exploring options of web services interface provided by ms reporting services. Hope this helps. Difficult - > Challenging, this simple replacement made me take my life little easy;)
If you are using VS 2005 to develop your application then I would suggest to create a report with user selection by using MS Reporting Services. Hope this helps... Difficult - > Challenging, this simple replacement made me take my life little easy;)
I assume that you are using either ASP.NET or windows forms as client. Try following: "ActionDate BETWEEN" & " '" & Convert.ToDateTime(dtpFrom.Value).ToLongDateString & "' AND " & " '" & Convert.ToDateTime(dtpTo.Text).ToLongDateString & "'" I also notice in your code, you are going from To...From! usually it is From...To right? Hope this helps. Difficult - > Challenging, this simple replacement made me take my life little easy;)
Hi Tomy, I would suggest following. If you are having only one table in dataset then use datatable instead. Dont use BindingSource directly assign datatable to DataGridView as DataSource. Apply the filter directly to DataTable.Defaultview. This way any selected row from DataGridView will have direct link to underlying DataTable. You can also add a DataColumn as Boolean type to apea in DataGridView as checkbox which your user can select and you can easily track it for further action. Hope this helps. Difficult - > Challenging, this simple replacement made me take my life little easy;)
If you are using SQL server then the best idea is to have a view which will return all company names. Once you are done with this you can write another SQL select on view with group by clause for any further data selection. Hope this helps. Difficult - > Challenging, this simple replacement made me take my life little easy;)
Can you paste your code here? might be easy to help you that way. Difficult - > Challenging, this simple replacement made me take my life little easy;)
Hi, In button_1 you are dealing with Emp.xls and in Button_2 you are trying to open EmpSai.xls! is this your simple mistake? Hope this helps. Difficult - > Challenging, this simple replacement made me take my life little easy;)
To best of my knowledge VS 2003 has no such facility, however, there are quite a few third party applications you can use to compare sql database, and some of them also let you generate script to synchronize both copies. Sql data compare from http://red-gate.com/ is one such example. Hope this helps. Difficult - > Challenging, this simple replacement made me take my life little easy;)
Hello, Have you heard of Microsoft Agent? the same way as animation appear in word of excel and word... you can do same with your application... check following links for more info: Hope this helps.