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

    Can't Logout!

    Hi, I've put a simple page together using Visual Web Developer 2005 Express Edition. There's a Master Page, which isn't too complicated, and on one of the content pages, I have the following code: <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true"...
  2. blueark

    Mac - PC shared folder?

    I know this has been asked before, but I can't seem to get it to work. Basically, I've a PC running Win2K, a Mac running 10.4.4, and a crossover cable between them. I'm just looking for a simple way to transfer files between them. I can ping the Mac from the PC, but not the other way round. I...
  3. blueark

    One way ping!

    I've been using a PC running Win2K at home, and I've recently bought an Apple Mac running OSX 10.4.4. The two of them are now connected via a crossover ethernet cable. After much fumbling around, I can now ping both IP addresses from the PC, but the Mac can only see its own IP address. I'm...
  4. blueark

    &lt;label&gt; and &lt;select&gt; in IE

    I just noticed something in IE 6 (not sure about other versions). Take the following code: <label for="testList">My List</label> <select id="testList"> <option>Option 1</option> <option>Option 2</option> <option selected="selected">Option 3</option> </select> Option 3 is selected...
  5. blueark

    Variables in Composite Controls

    I'm new to creating custom controls, so forgive me if I'm missing something incredibly obvious! I'm having trouble keeping variables up to date in a composite control I'm writing. It's a simple version of the "Wizard" control, but for v1.1. One control is a simple navigation control with...
  6. blueark

    QuarkXClusive with HP Indigo

    Has anyone used QuarkXClusive with a HP Indigo press yet? I just can't get it to work. I got a brand new Mac G5 running OS X Panther, and the first thing I installed was a brand new copy of Quark 6. Next, I downloaded QuarkXClusive and installed it. After that, Quark took 2 to 4 attempts to...
  7. blueark

    Centering a fixed width &lt;div&gt;

    I had been struggling with a small problem, and thought some of you might be interested, sorry if it's been posted before... A fixed width div, centered using the usual cross-browser workarounds: html, body { ... text-align: center; } #wrapper { ... margin-left: auto; margin-right: auto; }...
  8. blueark

    Mac IE 5 clear/float bug

    A web page I'm working on seems to work fine on most browsers, but not IE 5 on the Mac. It's not that important, but I'd love to know if anyone has a decent workaround that won't upset every other browser! Here's a simple example of the problem: [code] <div style="clear: both;"> <h2>Test</h2>...
  9. blueark

    Retrieving value from dynamic textbox

    This one's driving me nuts! I've got a user control that dynamically creates a number of textboxes. How do I retrieve the values from these text boxes when the form is submitted? From looking through this forum, it appears that dynamic controls have to be recreated each time the page loads...
  10. blueark

    ImageButton is inaccessible due to its protection level

    I'm trying to create ImageButtons dynamically. Something like this: ImageButton myButton = new ImageButton(); myButton.ImageUrl = &quot;images/arrow_collapse.gif&quot;; . . . myContainer.Controls.Add (myButton); So far so good. Now I want to create a function to handle click events, say...
  11. blueark

    SelectedIndex in a DropDownList from a value

    I've got a DropDownList that's populated dynamically. Values are set to unique ID's from a database, and the text is a corresponding string from the same database row. If I know what ID value should be selected, how do I go about setting the SelectedIndex property of the list? For example, the...
  12. blueark

    Category / Subcategory Select

    I've got a table that looks something like: ID, ParentID, Category.... So, each row has a unique ID, and if it's a top level category, ParentID is 0. A subcategory of any of these categories has ParentID set to the ID of the category above it, and so on. What I'm trying to achive is to get a...
  13. blueark

    PS8 : Filter Layers?!

    A few people on Adobe's 'wish-list' forums have been looking for the ability to create filter layers. An unconfirmed report suggests it might make it in PS8: http://www.extremetech.com/article2/0,3973,804807,00.asp For now, though, here's a workaround: faq229-3410
  14. blueark

    RedirectFromLoginPage Sometimes works...

    Here is a bit of my web.config file: <system.web> <authentication mode=&quot;Forms&quot;> <forms name=&quot;.C#FEWD&quot; loginUrl=&quot;login.aspx&quot; protection=&quot;All&quot; timeout=&quot;60&quot;> <credentials passwordFormat=&quot;Clear&quot;> <user name=&quot;someuser&quot...
  15. blueark

    My very first FAQ :)

    After all these months, I've finally written a FAQ! faq229-2880 It basically explains how to create an action that generates scanlines automatically. There's been a few questions about this recently, so hopefully some of you will find it useful. Let me know what you think, or if anyone finds...
  16. blueark

    Database Authentication

    Hi, When I used classic ASP, I was able to create a database of users/passwords, and if I wanted to password protect a page, I could simply include a file (say, 'checkpassword.asp'). Now I'm trying to do something similar in ASP.NET, but I can't find the right information anywhere. Here's the...
  17. blueark

    Accessing both internal &amp; external web pages

    In work, I generally access the internet directly through my modem. Before I reinstalled my system, I could also type in the IP address of our NT server and view our internal web pages. Not any more. The cables are fine (I can access certain folders on the server) and it doesn't make any...
  18. blueark

    Incorrect Page Size

    I'm having trouble RIPing a PDF file, and I was wondering if anyone could help. When I open it up in Acrobat Reader, at the bottom of the screen it says it is 7&quot;x8.5&quot;, which is correct. When I go to File > Document Properties > Summary, it says that the page size is actually...

Part and Inventory Search

Back
Top