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

    Excel Timesheet Chart

    I'm having trouble producing a timesheet bar graph in Excel. What I'd like is to have Names along the y axis and Workday(time) along the x. I'm having problems since I'm trying to map Names versus two columns for Start and End time. Please see attachment for raw excel data versus a rendering of...
  2. twofive

    How do I use images at data points in Excel line graphs?

    I'm trying to replace the line markers at data points (the monotone shapes at each point) with my own image, for example an image of a bullseye. I understand that I can change the line markers to a small set of monotone shapes such as diamonds, squares, triangles and circles, but how do I set it...
  3. twofive

    Relational DB design - Need Help

    I've contructed a fairly simple normalized (3NF), relational database. By simple, I mean each table relates to other table(s) in a 1 to many (1,n) relationship. Now, I am trying to extend this database, but I'm not sure how to proceed given specific qualifiers. Allow me to illustrate: * 1 Pod...
  4. twofive

    Please Help with DIV Layout

    I'm trying to layout my html page the "correct" way (as opposed to using tables). The problem is, I cannot set up the layout the way I like using divs without absolute positioning. What I'd like is a "container" div, and inside this container, I'd like six divs: two rows of 50% width divs and...
  5. twofive

    Having Trouble with a simple concept involving Classes .. Plz Help

    I have two classes. Truck and Tire. Tire has (1) size and (2) tread. Truck has (1) make, (2) model and (3) Tire. I am having trouble after assigning an instance of Tire to an instance of Truck. Consider the following code. Can anyone help? class Truck { private $make, $model, $tire; function...
  6. twofive

    New to C# - need help making C# app to execute a URL

    Assuming I have a simple C# asp page online, sendsms.aspx, whose function is to parse the parameter for a 10 digit phone number and use SmtpMail.Send to send an email to a mobile device. I'd like to make it so that the user doesn't have to open a web browser to run this web page--instead...
  7. twofive

    Help - connecting to remote db using SQL Server Mgmt Studio Express

    Hi, I'm new to MS SQL Server, and I can't find the way to connect to a remote SQL Server 2k db using SQL Server Management Studio Express, or its older equivalent Enterprise Manager. Please advise. Note, I am able to connect to it in VB with the following code: Set Conn =...
  8. twofive

    Why?!?! Dependencies out of thin air.

    Lets start with the cryptic error: The object 'DF__product_t___76630419' is dependent on column 'prod_file_for_download'. My SQL statement was simply ALTER TABLE product_tmp DROP COLUMN prod_file_for_download Perhaps I have the syntax wrong. What's the SQL syntax to delete a column (not just...
  9. twofive

    Help w/ sql ALTER using asp

    Hello, I rec'd help here earlier and need help with another MS-SQL Server 2k script (OSS experience only). I'm trying to add a column to an existing table using the SQL ALTER statement. Problem is, (1) the ALTER statement is not executing (or executing successfully), and (2) I have no VB skills...
  10. twofive

    Help w/ sql DESCRIBE using asp

    Please help me with this simple issue. I simply want to list the structure of a table w/ the DESCRIBE command, but I'm not sure how to print this using Response.Write or similar. Here's my VB: <% on error resume next dim Conn, RS Set Conn = Server.CreateObject("ADODB.Connection") Conn.Open...

Part and Inventory Search

Back
Top