Hi, I want to develop an application using asp.net in which user can create reports by dropping labels and database fields and move and place them any where they like in other words design report as per there requirement (during runtime) and then save that format and call that report. Is there any possiblity to make such application. waiting for your response.
Kashif Sabir
Posts
-
Dynamic Report Designing -
when a method is called i want to get first index value from an arraylist and when the same methid is called nxt time i want to get the second index value from the same arraylist...how?Take a static class variable and initialize it with the index of array and when you call the method again just add 1 to that variable i.e use that variable like a counter hope this helps sorry for the bad english. If thats not what you want then let me know
-
set a datasource for gridviewYou can easily bind a table in session by casting it i.e grid.datasource = (DataTable)Session["Datatable"]; grid.databind(); And providing inline editing is also possible.
-
Downloading problem using c sharpI have a network with a domain and using isa server as firewall i am developing an application for downloading file from a site and perform some calculations. i am using system.net class but an error is coming that "cannot connet to remote server". i have tried giving proxy, credentials but still error is coming. please reply Thanks in advance
-
Controls disappear from formi make a complete form with text boxes comboboxes and labels in a windows application with visual studio 2005 using c sharp after two days when i open the project there is no controls on the form but references are working fine in the code file even the code exists in the designer class of form in initialize component function what is the problem?
-
Creating database through vb.netSorry for replying late Following is the code for creating database please reply. This is how i create the data base and table. Public Function Create_UserDB(strDBFolder As String, strDBName As String, isDoubleAccounting As Boolean, isGLInclude As Boolean) As Boolean Dim strQuery As String Create_UserDB = False strQuery = "CREATE DATABASE [" & strDBName & "] " strQuery = strQuery & " ON (NAME = N'RWSDB_Data', FILENAME = N'" & strDBFolder & "\" & strDBName & ".mdf' " strQuery = strQuery & " , SIZE = 3, FILEGROWTH = 10%) LOG " strQuery = strQuery & " ON (NAME = N'RWSDB_Log', FILENAME = N'" & strDBFolder & "\" & strDBName & ".ldf' " strQuery = strQuery & " , SIZE = 1, FILEGROWTH = 10%)" ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'autoclose', N'false'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'bulkcopy', N'false'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'trunc. log', N'true'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'torn page detection', N'true'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'read only', N'false'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'dbo use', N'false'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'single', N'false'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'autoshrink', N'true'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'ANSI null default', N'false'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'recursive triggers', N'false'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'ANSI nulls', N'false'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'concat null yields null', N'false'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'cursor close on commit', N'false'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'default to local cursor', N'false'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'quoted identifier', N'false'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'ANSI warnings', N'false'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "', N'auto create statistics', N'true'": ExecuteQuery strQuery strQuery = "exec sp_dboption N'" & strDBName & "',
-
Creating database through vb.neti have created database in sqlserver through vb it was created successfully but when i go in enterprise manager for making query the table which were created are showing no columns i.e only All columns selection check box is there what is wrong with database? When i execute select query the result pane showing all columns but no columns in the table structure above MKS