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. SeaninSeattle

    PHP Include Syntax - Dreamweaver

    When I do the >Insert>ServerSideInclude in Dreamweaver, resulting in: <?php require_once('../../includes/navmenu/navbar.php'); ?> The page works: http://www.ericsonyachts.org/people-projects/regional_pages/rp_e-nw-00.php but what I see in design view (in the Dreamweaver application) looks...
  2. SeaninSeattle

    PHP Include Syntax - Dreamweaver

    Thanks Chris... Well, when I do the >Insert>ServerSideInclude in Dreamweaver, resulting in: <?php require_once('../../includes/navmenu/navbar.php'); ?> The page works: http://www.ericsonyachts.org/people-projects/regional_pages/rp_e-nw-00.php but what I see in design view (in the...
  3. SeaninSeattle

    Where's my Design View gone?

    I'm having the same issue with this - and have removed the table - so it's ONLY the include statement. The include works, the page works - but the design view is gone - and all I see is trash from my include (instead of the page and graphics, etc - design view. Was there ever any resolution...
  4. SeaninSeattle

    PHP Include Syntax - Dreamweaver

    I need a little assistance. I'm trying to include a menu system at the top of my webpage, and have need to insert an include in every page (the include has the menu system in it). I'm using Dreamweaver CS3 - and when I do a server side include (in php), the link is made, and the include...
  5. SeaninSeattle

    PHP Include Syntax - Dreamweaver

    I need a little assistance. I'm trying to include a menu system at the top of my webpage, and have need to insert an include in every page (the include has the menu system in it). I'm using Dreamweaver CS3 - and when I do a server side include (in php), the link is made, and the include...
  6. SeaninSeattle

    PS 8.0 CS - Lost My Dro pShadows

    Greetings All - A quick answer to this, if possible, please - to keep me from losing it.... I have a photoshop file with about 30 layers in it - many of which contain drop shadows. For some reason, they've all disappeared! Does anyone know of a often-errored method of losing your...
  7. SeaninSeattle

    Selecting into Temp Tables

    My brain is totally shot - anyone remember what the syntax is for pulling a ton of data into a temp table? It was something like Select into #temptablename ...Fieldnames from ...tablename where ...constraints Thanks, //sse Sean Engle Admin/DirIS ssengle@bswusa.com
  8. SeaninSeattle

    Win2kSvr Print Spooler Shut Down by Dr.Watson

    Before I start pulling my hair out... Does anyone know of any real specific 'gotchas' with respect to Win2kSvr and it's print services? I just moved my company to a new print server with Win2kSP3 on it - and loaded the drivers (all HP) - it seemed to work fine. Now the spooler is being shut...
  9. SeaninSeattle

    Creating User Defined Printer Settings in NT/2K/XP?

    Yeah, I found it - thanks very much - I knew it was in there somewhere... //sse Sean Engle Admin/DirIS ssengle@bswusa.com
  10. SeaninSeattle

    Creating User Defined Printer Settings in NT/2K/XP?

    I should mention it's tractor feed print stock... Sean Engle Admin/DirIS ssengle@bswusa.com
  11. SeaninSeattle

    Creating User Defined Printer Settings in NT/2K/XP?

    Help..... I have a old Fujitsu line printer DX2400 - which requires us to create a user-defined paper type for us to print check stock on. A consultant set this up years ago - and that box has died - so I've moved our AP person to a new box - but - that's right - I have no idea of how to set...
  12. SeaninSeattle

    Numeric Field - Empty Digits Filled With Zeros??

    Thanks Clare - So I cannot go directly from numeric to char, eh? I addressed this by adding another field (varchar), and two-stepping it: numeric-->varchar-->char. It seems to work. Hopefully I can get this off my desk now and get some lunch... Thanks for your help! :) //sse Sean Engle...
  13. SeaninSeattle

    Numeric Field - Empty Digits Filled With Zeros??

    Thanks Clare - I thought I could just convert the numeric format to char and then somehow flood the empty spaces with '0'. But it seems I cannot even get past: --------------- UPDATE COLUMBIA_UPLOAD SET COLUMBIA_UPLOAD.CKAMNT = CONVERT(char(10), TRXAMNT,10) FROM ##COLUMBIATMP WHERE...
  14. SeaninSeattle

    Numeric Field - Empty Digits Filled With Zeros??

    Our bank wants reports - which is not a problem - but they want numeric fields that are completely filled - so that if a nine digit numeric is for 10.00 - it would appear like this: 00000010.00 How on earth do I do THAT??? :( //sse Sean Engle Admin/DirIS ssengle@bswusa.com
  15. SeaninSeattle

    Converting DateTime Field to MMddyy Format?

    Depending on what you're trying to accomplish - I would just do a convert as mentioned above - select CONVERT(VARCHAR(25),GETDATE(),1) If you go to BOL, and look up 'CAST and CONVERT' you'll see a nice table of all the date/time styles - it's how I got to this point - not mentioning being...
  16. SeaninSeattle

    Converting DateTime Field to MMddyy Format?

    Oh God - I completely forgot about REPLACE... Never mind - thanks for help, though! :) //sse Sean Engle Admin/DirIS ssengle@bswusa.com
  17. SeaninSeattle

    Converting DateTime Field to MMddyy Format?

    Actually, I know about using the style setting: select CONVERT(VARCHAR(25),GETDATE(),1) gives: 06/03/03 But I need it without the whacks. Any ideas....anyone...I'm getting desperate here..... :) //sse Sean Engle Admin/DirIS ssengle@bswusa.com
  18. SeaninSeattle

    Problems moving GP 6.0/ SQL 7.0 to new SQL 2000 Server.

    What I did on my last version/hdwe change was to backup the db in Enterprise Manager, then copy that file over to the new server. I also copied the Dynamics db the same way. Then, on the new server, set up the SQL installation (same version as that you backed up in), then install a new Great...
  19. SeaninSeattle

    Converting DateTime Field to MMddyy Format?

    Anyone know if an easy way to convert a datetime field to a MMddyy format? Thanks for your help! :) Sean Engle Admin/DirIS ssengle@bswusa.com
  20. SeaninSeattle

    The Last Issue

    Ok - so this is the last issue - and I swear I'll stop whining... I have a numeric field that I converted to a decimal field. I need to now convert that decimal field to a varchar or char so that my ASPMail app can pick up the whole string (right now, it only picks up non-zero values - so...

Part and Inventory Search

Back
Top