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

  • Users: LeoLionHeart
  • Order by date
  1. LeoLionHeart

    index

    how do i insert a row at position 0 which says "select"? You thoughts would be appreciated.
  2. LeoLionHeart

    index

    Need the selected index of my select box to equal 1. this doesn't work <SELECT name=Department onChange="document.form(0).department.selectedIndex=1">
  3. LeoLionHeart

    Viewing aspx page

    I have a problem, my web app has been viewed by around 300 people. However, there are 2 people in the company where the page cannot be viewed. I can't figure out why. Any ideas?
  4. LeoLionHeart

    Datagrid Calendar

    Answer http://www.microsoft.com/india/msdn/articles/61.aspx
  5. LeoLionHeart

    Datagrid Calendar

    I can display the calendar control such as <asp:Button id="Button1" onclick="Button1_Click" runat="server" Text="..." CausesValidation="false" CommandName="Select"></asp:Button> Public Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)...
  6. LeoLionHeart

    Datagrid Calendar

    Hi there does anyone know or have an example of placing a image in a template column in a datagrid and then this image clicking and turning into a popup calendar. Then the date from the calendar going back into the data grid. I'm using vb and javascript. Any examples would be fantastic.
  7. LeoLionHeart

    DataGrid button

    Hi I have resolved that problem I have simply placed a html Image of the form and used the onclick event to display the calendar control. However, my problem now is I have a hidden control on my parent form and I need that control to display the cell that I've just clicked, so that the date can...
  8. LeoLionHeart

    DataGrid button

    Hi there I have a datagrid with 5 columns the 5th column currently holds a image button. This image button is a image of a date control and I want it to open a popup window using javascript, which leads on to my problem. Firstly I cannot add attributes to this button such as on page load...
  9. LeoLionHeart

    Server Properties

    Hi there, how do I determine whether a server has the .net framework. I have a windows 2000 server and I haven't the user aspnet so I am now thinking that the server doesn't have the .net framework. Need to check so that I can install if not. Thanks Leo.
  10. LeoLionHeart

    Permissions Error

    I have tried that and the message that appears is cannot find aspnet The server is windows 2000 server.
  11. LeoLionHeart

    Permissions Error

    Hi there I am receiving the error: The Microsoft Jet database engine cannot open the file '\\.mdb'. It is already opened exclusively by another user, or you need permission to view its data. I have done a search on this and the way to solve the problem is to go to the folder where my database...
  12. LeoLionHeart

    Can't send email

    I am using the following code in an ActiveX Script Set oMail = CreateObject("CDO.Message") Set iConf = CreateObject("CDO.Configuration") Set Flds = iConf.Fields iConf.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2...
  13. LeoLionHeart

    server side list box

    sorry javascript error. Resolved
  14. LeoLionHeart

    server side list box

    Hi I have 2 server side list boxes and 2 buttons. Selecting a item and clicking a button will transfer the item to the other list box. The transfer all works fine. However, when i click a button, before the page is posted back a little exclaimation mark comes up in the bottom left which reads...
  15. LeoLionHeart

    Project Error

    Hi there I have created a asp.net project and it all works find however when I leave the project on the internet say http:\\myproject\search.aspx for around 20 minutes then use it again I have the error. Server Error in '/' Application...
  16. LeoLionHeart

    Format Table

    Hi there I have a table such as the following: Name ID Bob green Bob red Bob blue Dave black Dave green I want to place it into a table that reads Name ID Bob green,red,blue Dave black,green Do I need to use a cursor for this. Any help would be...
  17. LeoLionHeart

    Connection error

    Hi, I hope that someone can help. I have two SQL servers with excatly the same databases on (development and live). When I connect to my dev database using the connection string: strConnect = "Driver={SQL Server};Server=SERVER;Database=DB;Uid=sa;Pwd=Pass;" I get results. However, on the...
  18. LeoLionHeart

    CSS

    Hi there I have a few questions on Cascading Style Sheets. I didn't have a style sheet at first in my project but I have now referenced one, such as in the head part of my html: <link rel="stylesheet" type="text/css" href="mainstyle.css"> In my mainstyle.css I have the following class...
  19. LeoLionHeart

    string left and len

    Solved var name=name.substring(0,name.indexOf('-')-1); where name is my string
  20. LeoLionHeart

    string left and len

    I have a string such as 013548 - Jo Bloggs. How do I just return the number part. For example, I want to loop from 1 to the length of the string. If the value = ' - ' Then exit loop. Store the position of the '-' and calculate left(string, strored position -2). Any ideas?

Part and Inventory Search

Back
Top