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: *

  • Users: bigracefan
  • Order by date
  1. bigracefan

    How to add the class for the link

    I'm getting started at css and I'm at point where I need some help. I've got a page that I'm trying to change the link color. Here's what I've got to work with (this is within a table): <%For i = 1 to cPLMaster.recordcount cPLMaster.MoveTo(i)...
  2. bigracefan

    Newbie button question

    I've inherited a asp.net page and I need to change the current buttons (which are images) to buttons that are controled by a style sheet. Here is what is currently used: <asp:imagebutton id="btnLookup" Runat="server" ImageUrl="../Agents/lookupbutton.JPG"> This is what I'm using on my classic...
  3. bigracefan

    CSS inconsistant

    I'm pretty new to DW but I think it's trying to tell me something. I've got a css that works on some pages. The ones that don't work, are only having some parts applied. My pictures line up but some lines and text are wrong. Now I think DW is telling me something on the gui. The pages that...
  4. bigracefan

    Changed datatype in table but still thinks it's the old

    The change was mandated. I wanted to add a field but we'll see what the repercussions are next week. ;)
  5. bigracefan

    Changed datatype in table but still thinks it's the old

    I think it was because this table had two triggers.
  6. bigracefan

    Changed datatype in table but still thinks it's the old

    I used Enterprise Manager to change a datatype from smallDateTime to nVarchar(100). The dates that where in that table are still there and I can change the dates with no problems. When I try to put a string in it, it gives me a conversion error. Telling me that it can't change the string to...
  7. bigracefan

    New at functions

    Thanks for the short cut and pointing out the case sensitivity. I'm still having the same issue thou. When it put onSubmit="return Validate();" I don't see the alert, when I put onSubmit="Validate()" I see the alert but the submit continues on. <script type="text/javascript"> function...
  8. bigracefan

    New at functions

    I'm trying to do a "Are you sure?" thing and it's not working the way I expect. Here's the code where I get the alert to work: <script type="text/javascript"> function Validate() { var answer = confirm ("Are you sure you want reinstate?") if (answer) {//ok return true...
  9. bigracefan

    Why won't this fire?

    Newby question: I have the following code trying to fire a javascript routine. It works on my button click but it doesn't work on the form post. <form action="frmReinstate.asp" method="post" name="ReinstateForm" onSubmit="Validate()" > What am I missing. I'm trying to do a "Are you sure?"...
  10. bigracefan

    How to see changes to asp page

    This going to sound real dumb, but how do I compile it? This is .net 1 that was wrote within studio 2002. I don't see a compile or make option on the file menu. Remember, i'm a newbie.
  11. bigracefan

    How to see changes to asp page

    I'm new to asp.net and I've change some code in a codebehind form. The change is a different output to an existing textbox. I don't get any errors but I don't see the change when I run the page. I've tried remaning the .vb page and referencing it again. Same thing, no errors but I don't see...
  12. bigracefan

    Dissapearing arrows

    I'm redoing our website with a new design contracted by a 3rd party. I can get everything to work except the arrows on the menus and some blocks near some links. Here is the sample page from the 3rd party: http://www.suncoastnetworks.com/samples/united_insurance/index.htm When I do a "save...
  13. bigracefan

    Newbie help - Catastrophic failure

    Thanks so much for the quick reply. I wanted to make sure that I wasn't off the mark on trying this. Let me ask you thou, is it possible to use any COM object or are some not usuable in .Net? Thanks again.
  14. bigracefan

    Newbie help - Catastrophic failure

    I'm writing my first com interface and I'm getting a "Catastrophic Failure" message when I try to invoke a method from the com object. Any help or direction would be greatly apprciated. Imports SSICONNECTLib Imports System.Reflection Imports System.Runtime.InteropServices Public Class Form1...
  15. bigracefan

    Dynamic SStab. How to place a control on each tab

    I have a dynamic SSTab that I want to place listviews on to. My current code place all of the listviews on the first tab. I'm starting out with a listview on the first tab. It's index is 0. For i = 0 To LineNames.Count - 1 SSTab2.Tabs = i + 1 SSTab2.TabsPerRow = i + 1...
  16. bigracefan

    Midnight, date change. How to dectect

    I ended up dumbing it up to get my answer. I just check now and see if it's AM or PM. One of those things where the obvious answer is hard to see. Thanks for quick replies thou.
  17. bigracefan

    Midnight, date change. How to dectect

    I have an application that does some date calculations. Our workplace has three shifts. The third shift starts on one day and ends on the other. Is there a good way to figure out what side of midnight I'm on. The shifts can vary so I don't have the luxury of saying it always starts and ends...
  18. bigracefan

    Save a Macro in Excel thru VB

    I've got a macro that I want to attach to an Excel sheet. Is there a "Save Macro" function that I'm not aware of? I want to save my module.bas in an Excel sheet.
  19. bigracefan

    Runtime 5 on Internet Explorer with a vb app

    That's it. These new computers are much faster that our old ones and the form doesn't load in time.
  20. bigracefan

    Runtime 5 on Internet Explorer with a vb app

    I have a vb6 web app. that runs on the client computers. We have a new hardware person and all of the new computers crash when the applications try to set focus to a text box. It's probably some kind of permission thing. Any ideas?

Part and Inventory Search

Back
Top