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 SkipVought 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: *

  1. SidTheSquid

    working with frames in vb.net webform

    Hi, i have a question about webforms and frames. I have a calendar web control on a left frame and stuff in the right frame. Whenever the user clicks a date, i want it to pass the date selected to the right frame and refresh the form so it uses the new date parameter passed. I know that the...
  2. SidTheSquid

    CR: Logon failed (Export to pdf)

    thanks for your help... your suggestions were well noted, i tried your first suggestion (didnt work).. I dont think i need to re-login to te database server since i have the data already available in the dataset. Your longer answer was something i already tried before (the export to pdf part...
  3. SidTheSquid

    CR: Logon failed (Export to pdf)

    I am using Crystal Report for VS.NET 2003. I am creating a Webform. I made a detailhours.rpt in the project and it gets the information from a dataset. I can connect to the database fine and fill up the dataset with the required information and the report appears as expected when it runs. I...
  4. SidTheSquid

    CR: Logon failed (Export to pdf)

    i have the exact same problem..... looking for a solution. If you manged to solve it, can u please post :) Thanks Sid
  5. SidTheSquid

    Stored Procedure Syntax -- Group By

    You are da MAN !! Thanks! Sid
  6. SidTheSquid

    Stored Procedure Syntax -- Group By

    Hi, I have the following stored procedure: CREATE PROCEDURE spSelectGroupCount @ColName varchar(20) AS Select @ColName, count(1) From traffic_log group by @ColName All I want was to pass in a column name and it counts number of times a hit was found for a particular entry. I am getting...
  7. SidTheSquid

    Select count(*) on dataTable... help

    nope... it was just written like that here... :( Still getting the same error. Whoever can solve it gets a little star :) btw: sorry for posting here... just realized that is not the correct place.
  8. SidTheSquid

    select colname, count(*) from datatable ..... help

    Hi, I have a myDataSet that has a dataTable tableSource. Its data from a web traffic log broken up in their repective columns. I would like to create a vb.net function that takes in paramenters [columnName as string, tableSource as dataTable] and returns a dataTable (or view). Its functionality...
  9. SidTheSquid

    Select count(*) on dataTable... help

    It sounded like a good idea, but unfortunately it still doesnt work... I get the exact same error as before. Any more suggestions?
  10. SidTheSquid

    Select count(*) on dataTable... help

    Yes, I am getting an error. I have this: Dim dv As New DataView dv = myDataSet.Tables(tableNameSource).DefaultView dv.RowFilter = "select browser_type, count(browser_type) from tableNameSource group by columnName" (not exactly what I have but you get the idea) I get the error...
  11. SidTheSquid

    Select count(*) on dataTable... help

    Hi, I have a myDataSet that has a dataTable tableSource. Its data from a web traffic log broken up in their repective columns. I would like to create a vb.net function that takes in paramenters [columnName as string, tableSource as dataTable] and returns a dataTable (or view). Its functionality...
  12. SidTheSquid

    SQL select on a DataTable

    Hi, i'm new to VB.net and I'm curious to know if i can do an sql select statement on a dataTable in a dataSet. I already created a myDataset and myDatable from a select statement from a database connection. Since myDataset can be worked on offline, I now want to make a subselection from...
  13. SidTheSquid

    % of duplicate rows...

    hmm... thanks for the tip. I never knew you could declare variables like that. Thanks again. Sid
  14. SidTheSquid

    % of duplicate rows...

    Thanks man. You're the best !!
  15. SidTheSquid

    % of duplicate rows...

    Hi, I have a table with a list of pages (from a web traffic log) and I wish to create an sql statement that list the percentage that a certain page was hit. I wish to display something like this Page Hits Percentage ------------------------------------ default.aspx 100...
  16. SidTheSquid

    Print Service Stops

    Hmm.. I would post the event, but I dont really have access to the server :) We just opened the door and pressed the reset button. Our tech guy was away today. I'll tell him on monday. I'll keep you guys posted. Thanks Don
  17. SidTheSquid

    Print Service Stops

    Is there any reason why a print service would stop by itself? This is happening at my workplace (using windowsNT). Our temporary solution is to restart the server and then all the printers come back online.(meaning we can connect to our network printers). After a couple of hours, no-one is able...
  18. SidTheSquid

    unable to connect; incorrect log on parameter

    Below is code to pass in parameters to a crystal 9 report viewer from VB.net. You essentially have to create parameter fields and their values, add the values to the fields, and then add the fields to field collection, and add the that collection to the report so the report knows which paramters...
  19. SidTheSquid

    How to connect to Sql Server

    I answered ur post. I'll post my code first thing in the morning.
  20. SidTheSquid

    unable to connect; incorrect log on parameter

    I've been having that same error message. A couple of things. 1) I don't think your problem has to do with passing in parameters to crystal report. I have been able to pass in parameters fine an still get the error. 2) I'm using crystal reports 9 with vb.net. and as a web application. I'll...

Part and Inventory Search

Back
Top