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

    Evaluating code/expressions at runtime

    Hey guys, I will try and explain this as best as i can. My program is going to look at word templates and replacing certain values inside them with values from a database. Some elements within this word document will need to be a bit more complex then finding and replacing such as IF statements...
  2. tommyboyau

    Storing \ in varchar

    Hi Everyone, When I generate a varchar with a \ in it, it comes out as a funny symbol and eats a character on the right side of it. I want to store a filepath in the db. As follows: Input: 'c:\testData\Reservation.doc' Any suggestions? Thanks, Tom
  3. tommyboyau

    Not specifying parameters (easy question)

    Hey, this should be relatively easy but I don't really know what to call it. Let's say i'm doing something like this Dim myDoc as Word.Document = myApp.Documents.Open(filename...etc....etc) In the .Open part there is about 15 parameters to put in. If I want to put in say the first and the last...
  4. tommyboyau

    mySQL server connections - leave one open or use multiple?

    Hi guys, Just a quick question here. What would be the best way to maintain a connection to a mySqlServer in an application? Lets say this application has 10 users and would be used for 10 hours a day, retreiving and manipulation data all that time. If i require a connection on different forms...
  5. tommyboyau

    mySQL server connections - leave one open or use multiple?

    Hi guys, Just a quick question here. What would be the best way to maintain a connection to a mySqlServer in an application? Lets say this application has 10 users and would be used for 10 hours a day, retreiving and manipulation data all that time. If i require a connection on different forms...
  6. tommyboyau

    Hyperlink to code behind function?

    Hi guys, This is a simple one i'm sure. I'm very new to the game: Lets say I want to make a hyperlink to log the user out on the page, what should I have in the .aspx to link to a function in the .aspx.vb file? In the .aspx.vb file I have a function or procedure which will do the following...
  7. tommyboyau

    Create a graphics object?

    Hi Guys, I am looking for some help creating a graphics object. At least thats what I think I want to do. Here is my scenario: - thePainter.java - does the painting to the JPanel - otherFile.java - does some other processing things not directly related to the applet however I would like it to...
  8. tommyboyau

    Displaying applets within a program

    Hi Guys, just curious - lets say I have two seperate files , one executed from the command line and the other is a java applet. I want the first one to continue to be executed from the command line and once it has done some processing it should open the applet in the AppletViewer. How would I...
  9. tommyboyau

    Throwing Exceptions

    Hi everyone, I need some clarification with throwing exceptions. I'm interested in two things: x Throwing exceptions which completly stop the program running x Throwing exceptions which but the program keeps running. eg: In the first instance the program might not recieve the correct amount...
  10. tommyboyau

    Exceptions

    Hi everyone, I need some clarification with throwing exceptions. I'm interested in two things: x Throwing exceptions which completly stop the program running x Throwing exceptions which but the program keeps running. eg: In the first instance the program might not recieve the correct amount...
  11. tommyboyau

    Converting a char to an integer?

    Hi Guys, Is it possible to convert a char to an integer? This is my situation: char curChar; curChar = currentLine.charAt(charCount); Now i would like to convert curChar to an integer. Thanks for your help.
  12. tommyboyau

    Introduction to ASP.Net and mySQL

    Hi Guys, I was wondering where I can find some guides or introductions to ASP.Net and MySQL. Specifically, i want to learn how to build Web applications and specifically things like login forms etc.
  13. tommyboyau

    MS SQL Reference Guide

    Hi All, Does anyone know where I can find a good reference guide for the SQL functions for Microsoft SQL Server? Thanks, Tom
  14. tommyboyau

    Delivery Status Notification (Delay)

    Hi All, When sending an email to a certain domain a friend of mine is having trouble sending the emails. He has no problems to other domains. When sending he receives an email back saying the following: Subject: Delivery Status Notification (Delay) This is an automatically generated Delivery...
  15. tommyboyau

    Refering to instances of forms

    Hi guys. I'm new to VB.Net from VB6. In vb6 if I said something like form1.show it will always show the one instance of form 1, however in vb.net it shows a new instance every time. So if I have another instance active, regardless a new one will come up. Can someone point me in the direction of...
  16. tommyboyau

    Creating a desk band or Converting C# to VB.NET

    Hi Guys, I want to create a desk band, sort of like the google toolbar. However, the only code I can find is in C#. The full program in C# can be found here: http://www.thecodeproject.com/csharp/dotnetbandobjects.asp I don't know c# so the question i'm asking is: Can someone either point me in...
  17. tommyboyau

    Webi XI - Ranking Data to display top 10 results

    Hi All, I want to be able to rank my data to display only the top 10 results. I've been told to add a dimension to the universe (which I can do) however I don't know what to add. We are using Oracle 9i. Can anyone help? Thanks, Tom
  18. tommyboyau

    Ranking Data

    Hi All, I have the following SQL script: SELECT DISTINCT DIM_PMD_SUB_REASON.REASON_DESC, sum(BAS_PMD_SA_EVENT_DATA.STOPS_COUNT), ROW_NUMBER() OVER (ORDER BY sum(BAS_PMD_SA_EVENT_DATA.STOPS_COUNT) DESC) "TOP10" FROM DIM_DAY, DIM_PMD_SUB_REASON, BAS_PMD_SA_EVENT_DATA...
  19. tommyboyau

    Query to find records which dont exist in another table

    Hi guys. This is the scenario. I have a query which has run and was sucessful. It isolted the 'matters' which had a variable associated with them called ClientNumber. I have done a SELECT INTO statement which has outputed my results into a table called QueryOutput. So in my QueryOutput table I...
  20. tommyboyau

    Create queries and reports based on input from forms?

    Hi guys, the problem that i'm facing is this: We have an exisiting database in place. I would like to use forms with a gui to be able to generate some reports and filter some output etc. For example, we have a table called "Documents" which is a list of documents. I am looking to make a few...

Part and Inventory Search

Back
Top