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 Mike Lewis 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. factotum

    sprocs calling sprocs

    I have the following requirements for a stored procedure: It must call a pre-existing stored procedure and pass it a ntext or image object. I have tried the following: Dynamic SQL on a temp table (can't add the text to the string) TEXTPTR (can't convert byte[] back to string) Calling Stored...
  2. factotum

    Database Schema Questions (for a queue)

    By edit, I mean that a user wants to change the page title of a page on the web site (or the price of a product, or the name of an employee, etc.). They don't have the permissions to make changes to the live site. Therefore, they edit and then it goes into a different state. I need to hold two...
  3. factotum

    Database Schema Questions (for a queue)

    (I mean a new row to the Content table per edit). Otherwise, how would you hold the 'pending' state title and the 'approved' state title (or any column data) at the same time?
  4. factotum

    Database Schema Questions (for a queue)

    TJRTech, Would you add a new row per edit? Thanks.
  5. factotum

    Database Schema Questions (for a queue)

    Thanks for the two great replies. I would like to include the ability to have two copies of "pending approval" pages. Therefore, I need to have two tables. Otherwise, I will run out of workstates. In addition, I've kept some things in the Pages table that every page has and could also be edited...
  6. factotum

    Database Schema Questions (for a queue)

    Hi, This is a long one, but high-level design question, so I could really use your help. I am developing a web application that enables users to add content to the site. However, depending on roles, their content will have to be approved. I have the following schema: Table_Pages (general...
  7. factotum

    Collecting data from input text boxes and displaying it in the table

    The only client-side way I know of to do this would be to submit the form via the &quot;get&quot; method and then parse the window.location for variables and put them into your table. For instance: <form name=&quot;pricesform&quot; method=&quot;get&quot; action=&quot;page.html&quot;> If you...
  8. factotum

    Handling a Space in the name of a text box

    Hi danman, Most people use &quot;camel case,&quot; i.e. RegistrationCode. You could also use an underscore. However, you can't have a space there. The old thought is that methods are lower-case first word, with a camel case from there, while objects are uppercase first word, camel case from...
  9. factotum

    Javascript API only firing once (strange place to break)

    This might help as well: toggleNavigation() Determines present state of passed layer and switches it (toggles) to the other state. onNavigation() The function that collapses the navigation section offNavigation() The function that expands the navigation section rememberNavigation()...
  10. factotum

    Javascript API only firing once (strange place to break)

    I have the following functions that enable a page to &quot;remember&quot; choices in navigation (like Windows Explorer and the little plus/minus signs) from page to page. So, if you close a navigation subsection on pageA, and then click on over to pageB, the page remembers you had that section...
  11. factotum

    Gold Light Effect &amp; Shiny Metallic Effect

    In order to do the lighting effects like you want, create the lighting effects with the black background in a black layer. Then, set the layer to screen. Voilá. The black disappears and the light affects the layers below. The simplest way to do metallic color is to create a monochromatic noise...
  12. factotum

    3d Plug-ins

    Back in the day, I used KPT Vector Effects. This product has appeared to vanish. Does anyone have a great recommendation for creating 3d vector art, either as a plug-in for Illustrator 10, or as a stand alone application that exports to eps. Thanks, f
  13. factotum

    multi-dimensional associative arrays

    Actually, I'm no longer setting an option to be 'selected.' There is also no way I know of to test this. While the restoreDefault() method is gone, and I no longer need the 'selected' attribute to reset the form, I don't have something selected in the beginning. Is this bad coding? Any help...
  14. factotum

    multi-dimensional associative arrays

    Alright! It worked. You can check it out at http://www.ionize.net/laboratory/converter2a.html The only changes I made to your code was naming conventions-- and I had to divide your second idx counter by 2 in doList(), so that I can store the equations (hidden) in the second half of the array...
  15. factotum

    multi-dimensional associative arrays

    Yes. That's exactly what I'm trying to do! :) But I can't figure out how to get that first option selected. If you slect one of the associative array's names in the first, that function works. But everything is getting thrown into that first pulldown. Reason I want to ensure that I have one...
  16. factotum

    multi-dimensional associative arrays

    Doesn't work. It's creating a pulldown with all the elements of the nested array, instead of just the name of the associative array. Also, from your code, I removed the &quot;select&quot; stuff, because that already exists. To more clearly see what I'm doing, you can check out...
  17. factotum

    multi-dimensional associative arrays

    Unless you're writing XHTML, where you must adhere to the XML standards; XML does not support attribute minimization.
  18. factotum

    multi-dimensional associative arrays

    I have an associative, mulitdimensial array abbreviated here that looks like: var equations = new Array(); equations[&quot;Acre&quot;] = [&quot;Meter\u00b2&quot; , &quot;4.046 * Math.pow(10,3)&quot;]; equations[&quot;Joule&quot;] = [&quot;Calorie (thermochemical)&quot;, &quot;Electron...
  19. factotum

    Nested Data Validation in Excel

    Hey Geoff, I'm so close it's wonderful. I have only one issue left to resolve. I'm selecting a lot of rows in a particular column and setting the Data Validation. But I'm using an absolute cell assingment (i.e. $L$2). If I use $L2, then the numbers go all whacky on me, and I can't... eh, I just...
  20. factotum

    Nested Data Validation in Excel

    Thanks so much for the help. I'm moving in the right direction. However, when I add your IF statement into the source area of the Data Validation pane, I get the warning... The List Source must be a delimited list or a reference to a single column or row. In addition, there's a limit to how...

Part and Inventory Search

Back
Top