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

    Not recognizing request. variables

    I'm very new to coldfusion, so this should be an easy one. I'm importing a template which contains the definition for a method that defines a variable Request.isTestServer(). When I hit the page, I know that template is getting loaded, but I'm getting an error: Detail: Method isTestServer...
  2. WorkerBeeJ

    password field blank after postback

    Kinda figured it might be. Thanks for your post. J
  3. WorkerBeeJ

    password field blank after postback

    I found a similar post from last year with no resolution. Hoping someone else has a solution this time. I have a textbox on a form to allow the user to set the value of a password, so I'm using the textmode="password" attribute. On that same form are controls which fire postbacks (dropdowns...
  4. WorkerBeeJ

    Triggering page validation without validation event trigger

    I figured out my solution. Calling the Page.Validate() method triggers all validation methods for visible controls.
  5. WorkerBeeJ

    Triggering page validation without validation event trigger

    Yes, I tried exactly that, but within the Validate_Stuff method, I'm actually using the ServerValidateEventArgs e parameter. So I need to call the method with that signature. I'm sure I could probably create new methods to do that validation, I just don't want to duplicate a lot of code. I'd...
  6. WorkerBeeJ

    Triggering page validation without validation event trigger

    I have a user control that has on it a save button, which calls a save method. I'm using this same user control in a wizard, where upon advancing past that specific step with my user control, the wizard calls the same save method that I'm calling on the button click, but without the click since...
  7. WorkerBeeJ

    html table formatting

    Thank you! Since I'm just the worker bee and don't set policy regarding what we can and cannot use to write our code, I appreciate the recommendation for the reference. Any other recommendations from someone else? WBJ
  8. WorkerBeeJ

    html table formatting

    As I said in my first post, all our html is written without an editor, which is more work, but usually makes for cleaner code. We used to have someone working here who would use frontpage on the sly, and we could always tell her code from anyone elses. It was usually a mess. That said, does...
  9. WorkerBeeJ

    html table formatting

    Thanks, and what about empty cells? A lot of times I try to add cells as spacers, but they never seem to show up even when I've set a width. Does the cell have to contain something in order to show up? If so, does that something then have to be the minimum width of the cell? And if I've set...
  10. WorkerBeeJ

    html table formatting

    Hello, This is somewhat embarrassing, since I've been writing asp.net for over three years now, but I sometimes have trouble with getting my html to make my pages look exactly the way I want them to. I use nested tables without grid layout and without the help of a designer because that's what...
  11. WorkerBeeJ

    Suppressing headers that contain no values

    Thanks for the quick reply! I am desparate! It's not just one item I'm checking for null. The following list is one example of one i'm having a hard time with: Group Foo: Item is Pending Item is Pending Item is Completed Item is Completed Item is Pending Given that there are no items that...
  12. WorkerBeeJ

    Suppressing headers that contain no values

    I've got a report structured like the following: Group Header #1: Checklist Header Group Header #2: Checklist Item Details: Checklist Item Details and Subreport of Comments The report takes parameters of: "DisplayCompletedItems" and "DisplayPendingItems". The third type of item is...
  13. WorkerBeeJ

    Changing default file path from c:\inetpub\wwwroot

    As a followup to my first post, I see in the Property Pages for my project, under Web Settings, that there is a section labeled "Web Access Method". This section has two radio buttons, one for "file share" and one for "frontpage". Beside file share, there's a place to type in the path (it...
  14. WorkerBeeJ

    Changing default file path from c:\inetpub\wwwroot

    I'm trying to build a project using my own folder structure rather than using C:\inetpub\wwwroot. I've created the virtual directory, gotten the project from source safe, which is in the path C:\projects\. I'm getting an error which reads the following: unable to create web project...
  15. WorkerBeeJ

    System Error &HC0000005&

    Good idea. I think I'll do that. Thanks.
  16. WorkerBeeJ

    System Error &HC0000005&

    I'm getting an error when I open one of my solutions in Visual Studio. Here's the message: Visual Basic .NET compiler is unable to recover from the following error: System Error &HC0000005& (Visual Basic internal compiler error) Save your work and restart Visual Studio .NET Anyone seen this...
  17. WorkerBeeJ

    table join

    I'm a newbee with SQL, so I'm very sorry for what is probably a very easy question. I have two tables, one table called Employee, one field of which is EmployeeName, and the another table called EmployeeHistory, which records any Employee record changes such as a name change. The fields for...
  18. WorkerBeeJ

    selecting a row from a datalist

    I'm trying to figure out how to find the appropriate row in my dataset without having to do a select that will return one row and then selecting that one row. In vb.net, I'd use the FindByMenuItemID method, but that doesn't seem to be working in c#. Anyone know what I'm doing wrong? Here's...
  19. WorkerBeeJ

    Setting excel cell type using interop

    I'm writing rows out to excel using an interop, and I'm having trouble figuring out how to specify how excel should write certain cells. The many of the numbers have leading zeros, which are being left off because the number type is set to "general" and not "text". Does...
  20. WorkerBeeJ

    I'm trying to do a string replace b

    Perfect! You rock!!!

Part and Inventory Search

Back
Top