There's a sample CR report on this page, to the left, there's a list of countries: http://www.123aspx.com/redir.aspx?res=31999 I have reports like that. When I click on one of the items in that columns, for example, China, how can I view the report for it?? -- I have looked into OnDrill, EnableDrillDown,etc. -- I know the first item is: page=1, grp=0, drillname=Australia But how do i reference that in my code??
KamWaf
Posts
-
CRViewer, please help -
email address verification...maybe look into CDO.
-
How to open new web page after specific time period ??well, remove the pop-up blocker!
-
Going nuts: "Logon Failed" -
Going nuts: "Logon Failed"Going nuts here... 1. I have .Net 1.0, VS 2002. 2. trying to open a crystal report (rpt) file and I keep getting: CrystalDecisions.CrystalReports.Engine.LogOnException: Logon failed. I have so many links about this: http://www.123aspx.com/redir.aspx?res=28033 http://jobs.aspalliance.com/crystal...9/09/25038.aspx the rpt and app is on my laptop and SQL is on another server . I have tried different userids/passwords, created rpt file from scratch but no use.. Even used Impersonation, but nope what do i need to do??
-
Crystal Report in ASP.NetHere's a good site. But I'm having issues: http://www.123aspx.com/redir.aspx?res=28033[^]
-
Path of fileThe production server is in DMZ and maybe file sharing is blocked... IS there a way to use asp.net and FTP??
-
Path of filewhy does it work fine on my laptop but on the production machine , I get "enter network password"???
-
Path of fileOne more issue. This is a small app, I finished it, works great on my machine. I can open the files in that folder, I'm happy.... ok, i WAS happy... I set up the app on production box, created a website, moved the web.config, unchecked "anonymous access", have Impersonation in the web.config...[b] Everything just like mylaptop [/b] When I go to the URL on the production machine and try to bring up the page, [b]I get a "Enter Network Password" dialog box!!! [/b]. Asks me to enter my userid, pwd, domain. I click cancel and I get : "HTTP 401.2 - Unauthorized: Logon failed due to server configuration Internet Information Services. This is usually caused by a server-side script not sending the proper WWW-Authenticate header field. Using Active Server Pages scripting this is done by using the AddHeader method of the Response object to request that the client use a certain authentication method to access the resource. " What to do?? why??
-
Path of fileThank you so much for helping me. I found this link: http://www.internet.com/icom_cgi/print/print.cgi?url=http%3A//www.15seconds.com/issue/020312.htm[^] And did the Impersionation. I did create another ASP.Net app. Thanks so much for the idea and it works now.
-
Path of fileThanks again for your help... Let me dig deeper with the stuff you gave me. And I will post again... Read something about using "impersonation" as well... impersonating the asp account or something.. let me dig deeper and see what I can do. Thanks again..
-
Path of fileThanks so much for your help, but I think I'm kind of confused. And I'm the only developer at work...no one else to help..So i really thank you for your help... 1. I went to the folder to give permission to IUSER_account. I clicked on "sharing" tab. Clicked on "permissions". I see "Everyone" there with "full control". I clicked "Add", Typed "IUSER_machinename" but got an error that it cant find it. 2. "you can create a totally new account for the ASP.NET application"... When I create a new aacount, then this new account needs to have access to that folder..right? On that folder, I see "Everyone", i see myself, my coworker and Administrator under the "security" tab... Again, thanks for your help...
-
Persisting data in textboxes after postback.what do you mean? You want the user to enter ALL of the textboxes and then do ONE submit?
-
Path of fileThanks for the explanation. I checked that and the account is "IUSER_". What should it be then?? I'm running the asp.net application on my laptop, and checked the IIS on my laptop. The second server is on another machine...
-
Path of fileMy brain is fried, been working on this all day and this doesnt seem too hard: Have 2 servers: S1, S2. S1 has my asp.net app. S2 has some files on it in a [b] shared [/b] Folder. [b] In my asp.net app, I want to get one of the files on S2 and just display it [/b] I found an example and whatever I do, the [b]path fails. I try the path from the command prompt and it works. It just doesnt work in the code. I have also tried IP address AND machine name. No use. I have searched yahoo and google , no use. [/b] This is what I have: Dim filepath As String = "\\\Reports\P1.xls" If Not filepath Is Nothing Then [b] If File.Exists(filepath) Then [/b] ****FAILS HERE, cant find the path ***** What do I need to do???
-
Need some help...Read about GDI+ . I'm new to graphics too in vb.net as well. Also, http://www.dotnetforums.net/ that site has a forum devoted to graphics. You might be able to find info there.
-
doable in Java but doable in .Net?Thanks for your help.
-
doable in Java but doable in .Net?I did more research about PDFWriter . Someone said it comes with ADOBE. I have ADOBE on my machine and there's a folder with 2 ocx files: C:\Program Files\Adobe\Acrobat 5.0\Reader\ActiveX PDF.ocx and AcroIEHelper.ocx I reference PDF.ocx in my VB.Net code but I dont see any PDFWriter member for it from the dropdown box when I reference it... is this the right ocx??
-
Insert error???can you try your insert without going thru the code..just directly in the database to make sure u have the correct syntax?
-
followed this example but mine doesnt workI followed the example on this website: [url]http://www.eggheadcafe.com/articles/20030515.asp\[/url\] To convert a HUGE Tiff to a samller JPeg image ..[b] to reduce the dimenstions ..[/b]..it converts the image to JPeg but still the weidth and height remain the same...it does NOT reduce the height and weidth to a smaller image.. What am I missing?? This is what I have: [code] Dim strFileToConvert As String strFileToConvert = "C:\IP\W0008-01-01.tif.jpeg" 'Initialize the bitmap object by supplying the image file path Dim b As New Bitmap(strFileToConvert) Dim g As Graphics = Graphics.FromImage(b) g.CompositingQuality = Drawing2D.CompositingQuality.HighQuality g.SmoothingMode = Drawing2D.SmoothingMode.HighQuality g.InterpolationMode = Drawing2D.InterpolationMode.HighQualityBicubic Dim newrec As Rectangle = New Rectangle(0, 0, 50, 50) g.DrawImage(b, newrec) b.Save(strFileToConvert & ".jpeg", System.Drawing.Imaging.ImageFormat.Jpeg) g.Dispose() [/code]