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 wOOdy-Soft 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. briancostea

    list-style: sqaure doesn't show

    Anyone know why this won't display correctly? It will only display the squares in the ul if i specify in the list-style: square inside; instead of list-style: square inside; CSS: #popAnalyze { background-image:url(../images/popAnalyze.gif); background-repeat:no-repeat; height:150px...
  2. briancostea

    jump to a bookmark in validation routine

    Is it possible to achieve the following scenario with .net? I set up a bookmark in a form. For example, <a name="a"> When the user submits the form, a validation routine is called to verify the contents of the form. If there is an error, I want to go to bookmark “a”. Does anyone know the VB...
  3. briancostea

    DBNull error

    i just started getting the following error this week ... it was working fine for about 3 weeks until yesterday. any help would be greatly appreciated. error: System.InvalidCastException: Conversion from type 'DBNull' to type 'String' is not valid. code: txtCarAg.Attributes.Add("value"...
  4. briancostea

    excel bar chart

    does anyone know how i can change the color of each bar in a stacked bar chart in excel?
  5. briancostea

    dropdownlist seleccteditem problem

    when i submit the page, my dropdownlist.selecteditem is always the first one, regardless of what i change it to. sub page_load dim index as integer select IIF(ObjDataReader("hotelbed") is dbNull.Value, "", ObjDataReader("hotelbed")) case "single" index = 0 case "double"...
  6. briancostea

    divs to form a box

    i have eight images for the top, bottom, left, right, and the four corners of a box. i know that i need to use css and div's to make it appear that there is a box around a table on the web page. does anyone know how to accomplish this? thanks - brian
  7. briancostea

    checkbox onclick

    does anyone know how i can call a subroutine when a user checks or unchecks a checkbox? i tried: <asp:checkbox id="x" runat="server" onclick="sub" /> but i get an error ... could not find attribute "onclick" thanks - brian
  8. briancostea

    set value of a textbox based on form

    here is my problem ... i would like to populate the value of a textbox based on a form in a popup window. i keep getting an "object expected" error. i think the problem is that the popup window is a .net page that is submitted. by that i mean there is a search function on the popup ... i...
  9. briancostea

    Error inserting into access database

    i get the following error when i run an aspx page with my local iis. Exception Details: System.Data.OleDb.OleDbException: Disk or network error. when i run it on my web server, it works just fine. i'm not sure if this is a permissions issue or not. i set the iis permissions of the virtual...
  10. briancostea

    access line breaks in query string

    i am trying to pass a variable via query string. the problem, however is that the variable contains line breaks. i tried to replace them, but no luck.
  11. briancostea

    css vertical menu does not display w/ a form

    i am having a strange problem with a css pop-out menu. it will not display of there is a form on the page. has anyone had this trouble before? thanks -
  12. briancostea

    ado paging question

    i have a web page where i return the results five pages at a time. everything seems to work fine except where i want to highlight the page the user is currently on. please see the following code (bold is the link that doesn't work): ''set intpage to page the user wants Select Case...
  13. briancostea

    Error Message: Rowset does not support fetching backward.

    I am not sure why I keep getting this message. I set the Lock and CursorTypes to 3. Any help would be appreciated. Set rsAdd = Server.CreateObject("ADODB.Recordset") rsAdd.LockType = 3 rsAdd.CursorLocation = 3 rsAdd.CursorType = 3 Set rsAdd = adoAdd.Execute(strSQL) If Not rsAdd.EOF Then...
  14. briancostea

    printing access table elements with attributes

    does anyone know how i can print a table's fields with their data types and lengths in access 2003? thanks -
  15. briancostea

    run an excel macro w/ vbscript

    i am trying to create a script to start ms excel and run a macro stored in personal.xls. does anyone know how to do this? i know how to start excel, i need help calling the macro. thanks - bri
  16. briancostea

    initialize array

    is there a way initialize an array of integers to zero?
  17. briancostea

    Cannot use Request.Form in VBScript function??

    Does any one know why I cannot use Request.Form in a SBScript function? I am trying to set a session variable. <input type="button" class="goButt" value="GO" onClick="DoStart()"></input> <script language=VBScript> <!-- function DoStart() <%session("sub") = Request.Form("lstExperts")%>...
  18. briancostea

    Request.Form has no value after setting a hidden field

    The alert boxes produce the correct output, but the Response.Write Request.Form("exp") statement produces no output. Any ideas would be greatly appreciated. Thanks in advance. %> <form name=shw> <INPUT TYPE=HIDDEN NAME=exp id=exp> </form> <script language="JavaScript">...

Part and Inventory Search

Back
Top