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 Chriss Miller 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: ksbigfoot
  • Content: Threads
  • Order by date
  1. ksbigfoot

    Rounding error

    I am using Crystal Reports 10. I view the query my report is using and when I run it through Query Analyser it shows the values to be 3.5 But when the value is placed in the details area, it is displayed as 4.00 I have formatted the field by clicking Format Field -> Customize. Decimal 1.00...
  2. ksbigfoot

    How to load array in JSP getAttribute

    I am new at and using Struts. I'm not sure how to do the following: I am loading an Arraylist of TitleNames. Each TitleName is related to a List of pictures (MyList). MyList is a class that I created that contains all the fields needed to describe the picture. In my code at the top of my jsp...
  3. ksbigfoot

    name value pairs checking if they exist

    I am reading from the app.config file successfully using the following code. 'Read in String from app.config file Dim VarSettings As New System.Configuration.AppSettingsReader() Dim oString As Object = VarSettings.GetValue("LogPath", GetType(String)) Dim strPath As String = oString.ToString()...
  4. ksbigfoot

    Direction on how to publish vb.net app

    I am calling my vb.net app from a batch file. The batch file calls a module within my vb.net app which starts off the whole process. Just wondering what you would suggest on what the vb.net app should run as?
  5. ksbigfoot

    How to access XML in Dataset

    I am using VS 2005. My dataset read this XML <Rows xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Row id="12345678890" peopleid="12345"> <Field id="F1" type="Varchar">Val1</Field> <Field id="F2" type="Varchar">Val2</Field> <Field id="F3" type="Varchar">Val3</Field>...
  6. ksbigfoot

    How to format Date using to_date

    My date is in this format: 2008-01-17 5:23:20 PM I am using: to_date('2008-01-17 5:23:20 PM', 'yyyy-mm-dd hh24:mi:ss'), but this gives me an error. Do you know how the to_date should look?
  7. ksbigfoot

    change double 3 decimal places to 2 decimal places

    I have a field of type Double, it originally had 3 decimal places. I changed it to 2 decimal places, but the 3 decimal places are still in the table. How would I change the numbers to 2 decimal places?
  8. ksbigfoot

    INSERT INTO with Sequence.nexval

    I didn't want to use a trigger on INSERT in my table. I am wondering how to get this query to work (I simplified it for this post) INSERT INTO Table1 (Sequence.nextval AS Table1_ID, FirstName, LastName) (select '' AS Table1_ID, FirstName, LastName from Table2 minus select '' As Table1_ID...
  9. ksbigfoot

    add array to datagridview

    I have an array returned to me, what would be the best way in VB.net to get the data from the array displayed in the datagridview?
  10. ksbigfoot

    how to test module

    I have been asked to write a program that will be called from the windows scheduler every night. How would I test the module I am writing without setting up a windows task scheduler?
  11. ksbigfoot

    How to pass values into custom Error page

    I am using ASP.NET 2.0 When I have an error within my webpage. What I would like to do is read a value from the URL and pass it into the custom error page. Can I pass values into the custom error page? Right now I have this code in my web.config file <customErrors mode="On"...
  12. ksbigfoot

    What is # symbol at beginning of name

    I inherited some code and the cascading style sheets have a #MyList {...} in it Plus #MyList a {...} Plus #MyList a:hover, #MyList a:link, #MyList a:visited {...} I have searched for the # character, but I can't find anything. Can someone point me in the right direction. Second part of my...
  13. ksbigfoot

    Don't show Numeric page number on Datagrid if one page

    I set my Datagrid to PagerStyle-Visible="True" PagerStyle-Mode="NumericPages" The grid is to show 10 records at a time. If I have only 9 records being displayed, is there a way to not show 1 as the page number?
  14. ksbigfoot

    This expression is typed incorrectly ...

    I am using MS Access 2000 I am loading a form that contains 2 subforms. If I remove the second subform, it loads correctly, so I am assuming that it is my second subform that is giving me the grief. Here is the message I get when I load the subform This expression is typed incorrectly, or it...
  15. ksbigfoot

    Need to create a graph and save it as a PDF file

    I am not sure how to do this. Can someone point me in the right direction. I have an ASP.NET page in which I want to do a line graph based on values out of a database. What I would like to do is make a graph and save it out to a PDF file. The best scenario is call my VB.NET layer and create...
  16. ksbigfoot

    save visio graph to pdf programatically

    I hope this is the right forum to post this in. Can someone point me in the right direction on how I can solve this. Can a graph in Visio be saved to a pdf file through a calling program like VB.NET?
  17. ksbigfoot

    Not sure how to tackle this? 2 views in one report

    I am using CR 10. I have tried different ways to get this to work and I am not successful. I have 2 views. The first view is a simple view in which I want to show this information in the header file as it never changes. The second view is a concatenation of 5 UNION queries. This view will...
  18. ksbigfoot

    How to check if record is being deleted in OnCurrent event

    I am using MS Access 2000. In my OnCurrent event of subform1, I call a module that refreshes subform2. I am running into an error when I delete the record in subform1, the OnCurrent event gets called before the Form_BeforeDelConfirm event. I don't want to call the module that refreshes subform2...
  19. ksbigfoot

    Multiple Database diagrams

    This might be a simple question for some people, but I have always wondered about it. We are using SQL Server 8 and we have about 180 tables. I am creating a diagram, but it is getting quite big and I have to scroll a lot. Some of our areas only have maybe 5 tables and access a couple of tables...
  20. ksbigfoot

    Creating a chart from a Query

    I am using MS Access 2003. I created a query with 3 fields and there is only 3 rows that are pulled back. I created a report. I inserted a Chart using the wizard. I then went to the properties of the chart after it was created and changed the Row Source to point to my query that pulls in only...

Part and Inventory Search

Back
Top