Click here to Skip to main content
15,922,533 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Scheduled task in ASP.net? Pin
hifiger200415-Jul-08 15:40
hifiger200415-Jul-08 15:40 
QuestionLoading an external website and only displaying specific parts Pin
madchadmi14-Jul-08 2:30
madchadmi14-Jul-08 2:30 
AnswerRe: Loading an external website and only displaying specific parts Pin
Johnny ²14-Jul-08 2:52
Johnny ²14-Jul-08 2:52 
AnswerRe: Loading an external website and only displaying specific parts Pin
munklefish14-Jul-08 3:15
munklefish14-Jul-08 3:15 
QuestionGrabing Data Between Two Code Blocks Pin
munklefish14-Jul-08 1:49
munklefish14-Jul-08 1:49 
AnswerRe: Grabing Data Between Two Code Blocks Pin
Perspx31-Jul-08 8:31
Perspx31-Jul-08 8:31 
QuestionCrystal Report - Database Logon Failed Pin
N.Surendra Prasad14-Jul-08 1:35
N.Surendra Prasad14-Jul-08 1:35 
AnswerRe: Crystal Report - Database Logon Failed Pin
cglaude222-Oct-10 4:20
cglaude222-Oct-10 4:20 
Hi I have the same problem.

But I pass the crediential to the report at run time

Code:

Dim myFields As CrystalDecisions.CrystalReports.Engine.ParameterFieldDefinitions
Dim thisField As CrystalDecisions.CrystalReports.Engine.ParameterFieldDefinition
Dim myValue As CrystalDecisions.Shared.ParameterDiscreteValue
Dim my_Param_Name As String
Dim my_Param_Kind As CrystalDecisions.Shared.ParameterValueKind
Dim crCurrentValues As CrystalDecisions.Shared.ParameterValues

Dim _report As New CrystalDecisions.CrystalReports.Engine.ReportDocument

_report = New CrystalDecisions.CrystalReports.Engine.ReportDocument
_report.Load(Server.MapPath("~/Report/Extraction_Event.rpt"))
_report.SetDatabaseLogon("XXX_USER_NAME", "XXX_PASSWORD", "SERVERNAME", "DATABASENAME")


myFields = _report.DataDefinition.ParameterFields

For Each thisField In myFields
myValue = New CrystalDecisions.Shared.ParameterDiscreteValue
my_Param_Name = "_GUID" 'thisField.ParameterFieldName
my_Param_Kind = thisField.ParameterValueKind

myValue.Value = Session("_GUID").ToString '"" _DTParameter.Rows(i).Item(1)
crCurrentValues = thisField.CurrentValues
crCurrentValues.Add(myValue)
thisField.ApplyCurrentValues(crCurrentValues)
Next

CrystalReportViewer1.EnableDatabaseLogonPrompt = False
CrystalReportViewer1.ReportSource = _report
End Sub
Questiondreamweaver page correct work with firefox but not with internet explorer [modified] Pin
umeshdaiya13-Jul-08 22:46
umeshdaiya13-Jul-08 22:46 
AnswerRe: dreamweaver page correct work with firefox but not with internet explorer Pin
munklefish14-Jul-08 2:00
munklefish14-Jul-08 2:00 
AnswerRe: dreamweaver page correct work with firefox but not with internet explorer Pin
Shog914-Jul-08 4:20
sitebuilderShog914-Jul-08 4:20 
QuestionInternal IP shown in address bar Pin
dan!sh 13-Jul-08 18:56
professional dan!sh 13-Jul-08 18:56 
QuestionWebsite User Forum type thing? Pin
devintm013-Jul-08 11:43
devintm013-Jul-08 11:43 
AnswerRe: Website User Forum type thing? Pin
Shog913-Jul-08 15:18
sitebuilderShog913-Jul-08 15:18 
QuestionSession State depends on Cookies ? Pin
Feras Mazen Taleb12-Jul-08 4:49
Feras Mazen Taleb12-Jul-08 4:49 
AnswerRe: Session State depends on Cookies ? Pin
Shog912-Jul-08 6:41
sitebuilderShog912-Jul-08 6:41 
GeneralRe: Session State depends on Cookies ? Pin
Feras Mazen Taleb15-Jul-08 3:51
Feras Mazen Taleb15-Jul-08 3:51 
GeneralRe: Session State depends on Cookies ? Pin
Shog915-Jul-08 3:57
sitebuilderShog915-Jul-08 3:57 
QuestionHow Can I determine the current security level of the browser Pin
Feras Mazen Taleb12-Jul-08 4:45
Feras Mazen Taleb12-Jul-08 4:45 
AnswerRe: How Can I determine the current security level of the browser Pin
just3ala212-Jul-08 22:42
just3ala212-Jul-08 22:42 
GeneralRe: How Can I determine the current security level of the browser Pin
Feras Mazen Taleb15-Jul-08 3:54
Feras Mazen Taleb15-Jul-08 3:54 
QuestionRestrict the download of a file to once per IP address. Pin
inf1niti11-Jul-08 12:07
inf1niti11-Jul-08 12:07 
AnswerRe: Restrict the download of a file to once per IP address. Pin
Johnny ²11-Jul-08 22:36
Johnny ²11-Jul-08 22:36 
QuestionHelp......how to convert doc format to tiff format Pin
yang12310-Jul-08 23:57
yang12310-Jul-08 23:57 
AnswerRe: Help......how to convert doc format to tiff format Pin
Shog911-Jul-08 7:32
sitebuilderShog911-Jul-08 7:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.