15,790,957 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Python questions
View PHP questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Reji Ab (Top 31 by date)
Reji Ab
14-Nov-13 7:52am
View
Thanks Chauhan, that works absolutely fine
Reji Ab
14-Nov-13 5:35am
View
Hi
I solved myself, I need to put return true as below to force postback
Button1.Attributes.Add("onclick", _scriptJS1 + "; return true;")
Reji Ab
13-Nov-13 11:55am
View
Thank you for your reply. It doesn't work even if there is no window already opened in the background
Reji Ab
13-Nov-13 11:48am
View
Thank you Ganesh, Where do I put your code. I couldn't use button.click it errors
Reji Ab
3-Oct-13 12:15pm
View
Thank you Kschuler, I don't want the user to overwrite my version of crystal reports, if I can put all the dlls in my own folder rather than putting in the default folder
Reji Ab
2-Jul-13 15:10pm
View
Thanks,. But I am using the built in dialog in crystal report viewer. So I don't have any control on it
Reji Ab
17-Jun-13 8:46am
View
Thanks for your reply. Those examples shows text box with list box. I just want to use list box only
Reji Ab
29-Apr-13 5:10am
View
Thanks for your reply. But I still need to install msm package in the client machine.
In Visual basic 6 there is a built in report named Data report. If I want to install the data report in the client machine I just need to register two dlls in the client machine. So can I get the dlls to register in the client machine just to run the crystal report same as in the case of data report, instead of running the package if possible
Reji Ab
24-Apr-13 10:27am
View
Open the report in database->Set location
Leave only table name in location (not servername.dbo.tablname) for all of the tables you are using in the report
Reji Ab
10-Apr-13 12:48pm
View
Sandeep,
Thanks for your reply. I just want to assign to another parameter field in the sub report, not to any of the database fields in the sub report
Reji Ab
18-Jan-13 5:43am
View
<script> function populate() { document.submit.form(); ///now write the coding for onclientclick event window.open('Default6.aspx','List','scrollbars=no,resizable=no,width=420,height=330'); return false; } </script>
After submitting the form it never executes the second part of the function window.open.....
Reji Ab
15-Jan-13 2:16am
View
It works but popup blocking issue still there
Reji Ab
14-Jan-13 11:53am
View
window.open works well without popup blocking if I use it in client side. The problem here is I just want to show it after executes the server side script
Reji Ab
14-Jan-13 9:21am
View
Thanks Tharaka. I want to show an asp page as popup. Div popup shows only a popup window
Reji Ab
14-Jan-13 5:53am
View
Thanks Tharaka for your reply. I looked into the link and I can see RegisterClientScriptBlock and RegisterStartupScript both used in server side if I open the popup from the server side popup blocker blocks it. I don't want to do that. If I use javascript:window.open ..... in onclick it shows an error.
Can u please provide me the sample code to pop up window without blocking.
Reji Ab
7-Sep-12 7:05am
View
CrystalReportViewer1.ParameterFieldInfo.Add(objParameterField) causing null value reference error. The other code works by instantiating both parameterfield and discretevalue for each parameter
Reji Ab
1-Sep-12 15:03pm
View
What is wrong? . Same to you as well
Reji Ab
1-Sep-12 14:06pm
View
Your reply is wrong there is grid in the form. I found the solution
just call application.doevents() after invalidate then it fire the paint event. No need to wait for whole day
Reji Ab
29-Aug-12 10:59am
View
I want to paint the grid in form load event. Below is the bit of code in the load event. I want execute the paint event of the grid in the line "DbgridView.InvalidateCell(DbgridView.CurrentCell)"
For Each dr In dt.Rows If irow >= iTotalrows Then DbgridView.Rows.Add(1) End If DbgridView.Item(iColumn, irow).Value = dr("CT_DESC") If Not IsDBNull(dr("Assigned_Code")) Then selection = True rcdraw = DbgridView.GetCellDisplayRectangle(iColumn, irow, False) DbgridView.CurrentCell = DbgridView.Item(iColumn, irow) DbgridView.CurrentCell.Selected = True DbgridView.InvalidateCell(DbgridView.CurrentCell) End If irow = irow + 1 ' Exit Sub Next
Reji Ab
29-Aug-12 8:48am
View
There nothing wrong in the paint event. It works well after loading the form. I debug the code , it doesn't goes to the paint event when it executes invalidate in the form load event
Reji Ab
29-Aug-12 7:34am
View
I want to call the paint event in the load event of the form. Invalidate doesn't call the paint event in the load event of the form
Reji Ab
29-Aug-12 7:02am
View
It didn't work for me
Reji Ab
29-Aug-12 4:17am
View
Thank you, that works
Reji Ab
22-Aug-12 1:59am
View
Thanks for your reply. I already googled it but no help.
It happens in the formula code
ToText({rooms.RM_DIRYPOS}) + ToText({rooms.RM_ABBR});
were rm_dirypos and rm_abbr are defined as varchar(10) in sql server.
When I use vb.net 2010 it uses crystal report XI to run the reports.
when I open in crystal report designer it uses 8.5 to run it and it runs fine.
This report works well when running it from DELPHI application, it uses crystal report 8.5 to run it. So I am wondering is that an issue with new version of crystal report. Any ideas please help
Reji Ab
22-Aug-12 1:51am
View
Deleted
It happens in the formula code ToText({rooms.RM_DIRYPOS}) + ToText({rooms.RM_ABBR}); were rm_dirypos and rm_abbr are defined as varchar(10) in sql server. When I use vb.net 2010 it uses crystal report XI to run the reports. when I open in crystal report designer it uses 8.5 to run it and it runs fine.
Reji Ab
10-Aug-12 1:55am
View
I repaired the installation but one component failed to install, but still having the same problem.
when I tried to register the dll manually It shows following error :
"<the path of the dll> was loaded but the call to DllRegisterServer failed
with error code 0x80070005". I logged in as an administrator in order to register the dll through command prompt
Reji Ab
8-Aug-12 4:07am
View
Its showing an error when I tried to register the dll
Reji Ab
29-Jul-12 10:54am
View
In the database the data type is datetime(yyyy/mm/dd hh:mm:ss)
It appears as same format in crystal report as well but the data type is string
Reji Ab
29-Jul-12 10:48am
View
if you put DateValue({myTable.strDate}) in the selection formula it
shows an error message "bad date format". My question is why the datetime type changed to string type in crystal report?
Reji Ab
28-Jul-12 1:39am
View
SetDataBaseLogon() didn't work for me. Other code works, Thank you
Reji Ab
25-Jul-12 17:23pm
View
Thank you
Show More