Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: majordog
  • Content: Threads
  • Order by date
  1. majordog

    Consuming a vb.net web service from vb 6.0 app

    Good Day All, I would like to be able to consume a web service I have written and deployed to the web server from a vb 6.0 application. Any direction would be much appreciated .. TIA
  2. majordog

    SubTotoal of field per year

    Hey All, I have a question concerning a query I am trying to write; I have a table with years and types SELECT Veh_Year, COUNT(NoPlateType)AS COUNT FROM dbo.AUG13_PM_RSD GROUP BY Veh_Year, NoPlateType WITH CUBE What i want to do is get how many "reds" subtotoal were for each...
  3. majordog

    Response.Redirect not opening local file

    Hey All, What I am trying to do works fine on my development machine. When I move it to the server however, it does not work. Maybe you can explain what I'm missing. I am storing a path ie: "C:\inetpub\.....\portable.doc" in a Session variable. I then launch a new browser window on a custom...
  4. majordog

    File.copyTo problems

    Hey All, Working with VB.net, writing a windows service that monitors the folder activity on a share drive. When a text file is dropped into the folder, the file is copied and moved to a private directory on the local drive. I am having problems with copying the file over to the local drive...
  5. majordog

    Exporting cr 9 results in "Error in file" - ??

    I'm looking for some help understanding why these crystal report 9 files will not export. I have gone over the code and am confident that it is correct, albeit, perhaps I am missing a step I am unaware of (I will post below). Regardless, when I hit the oRpt.Export - I always get an error...
  6. majordog

    cr 9 .rpt file export programmically not working - help!?

    Hey All, I have reports written in crystal v9 that I am running from web app using vb.net. Whenever I try and export, I get this error message: Error in File C:\path\file.rpt Operation not yet implemented If I place a watch on it I see that the value of the report document on the line of code...
  7. majordog

    Formatting question cr 9

    Hey All, I have a report with about six or seven sub-reports within it. Here's the thing, when I print, I end up with 7 pages for somehting that could fit on 3. I end up with blank space at the end of the page after each sub-report and the next sub report doesn't begin until the new next...
  8. majordog

    report document export error - ?

    Hey All, I am stumped - I try to export a report document to any format like .pdf, .xls, .doc, .rtf and I consistently get the error: Error in File C:\..\reportname.rpt: Operation not yet implemented If I look at the line in debugger, with a watch, the value is: Run-time exception...
  9. majordog

    Report Document export was working now not??

    Hey All, I was using crystal v8.5, then switched to v9. Code has not changed and yet I get this error message now when i try to export to another format: Run-time exception thrown: System.NotSupportedException. Error in file c:\inetpub\wwwroot\foldername\reportname.rpt: Operation not yet...
  10. majordog

    Easy Excel selecting range question

    Hey All, I run this code: Windows("EC1997-002 031904 calc1.xls").Activate Windows("03190930.04").Activate Windows("03190935.04").Activate Windows("03190940.04").Activate Windows("03190945.04").Activate Windows("03190950.04").Activate Windows("03190955.04").Activate...
  11. majordog

    trying to launch launch .pdf and word docs from web app

    Hey All, Hoping someone can give me a helping hand. I think I am on the right track but not sure. I have a reporting web site, ASP.Net and VB.Net (VS 2003) I export the reports to .pdf, .rpt and .doc files. This all works fine. However, when I try and launch these files I get nothing. I...
  12. majordog

    CrystalReportViewer icons do not display during runtime

    Hey all, Hoping somebody can help me solve this. The icons on the toolbar for the crystalreportviewer in an ASP.NET/VB.NET web application do not display during runtime. I am having a devil of a time troubleshooting this. I have found all the icons in C:\Program Files\Microsotf Visual Studio...
  13. majordog

    CrystalreportViewer toolbar does not dispaly correctly

    Hey There, Hoping somebody can help me solve this. I am working with crystal 8.5, asp.net web application - using the crystalreportviewer to display reports. For some reason, the toolbar on the reporrt viewer will not display the icons at all. I'm sure the path to the icons is mistaken...
  14. majordog

    permissions - logon fails

    Hey All, I continuously get Logon failed error messages when I attempt to run launch a crystal report from an asp.net web application. I suspect that the permissions for the asp user are not correct but am not sure where I can change this. The code I use to launch is: Dim cil As New...
  15. majordog

    Load Report Failed - Logon failed

    Hey, I'm super stuck. I have been trying to get a web application for web reporting off the ground. Right now I would be happy if I could get any report to run - but cannot. As I have played with the code and searched for information on-line, the two error messages I am getting are Logon...
  16. majordog

    Displaying a Crystal Report for .Net 9.1

    Hello all, I'm trying to find some documentation or help to display reports from web ASP.Net app using VB.net - Does anybody have some URL's I can look at or has done this and can help me?
  17. majordog

    dropdownlist in edit mode does not return the right value??

    Hey All, I have an editable column in a datagrid called DG_Combo which I declare like this: <asp:TemplateColumn HeaderText=&quot;Technician&quot;> <ItemStyle HorizontalAlign=&quot;Center&quot;></ItemStyle> <ItemTemplate> <asp:Label id=lblTechnician Text='<%#...
  18. majordog

    Capturing the user hitting enter on keyboard

    Hey All, Web app - I'm trying to capture the user hitting enter on the keyboard. Is there a way to do this?
  19. majordog

    Setting focus on the selected index of datagrid

    HI All, Question: When my page reloads, I would like the position to automatically be scrolled to the selected index of a datagrid (If a row has been selected). Some of the grids are long enough that scrolling is going to become a hassle - I have a datgrid that allows editing, so when the...
  20. majordog

    Windows Service can anyone tellme why this routine fails?

    Private Function AnyEmailsToSend(ByVal command As String) As Boolean Dim ds As New DataSet Dim MyConnection As SqlConnection = New SqlConnection(DatabaseKey) Dim MyDataAdapter As SqlDataAdapter = New SqlDataAdapter(command, MyConnection) Dim MyDataTable As New...

Part and Inventory Search

Back
Top