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

    Shared Printer Problem???

    I'm wondering if anyone can help me. I have have SBS 2003 installed on a server with two client machines in the same office accessing it through the network - I recently replaced my Router ... in doing so I have given myself a few problems. The router change has resulted in a few I.P address...
  2. gi11ies

    Web Page Generated Memory Process

    Im wondering if its possible to have a web page generate a process that stays in memory and does database calls ... and have this process resident in memory and still carrying out database calls even when the web page is closed? Im working on web page based messaging system that checks the...
  3. gi11ies

    Textbox Highlight Text and Replacing

    Hi I posted this in the ASP.NET forum, but was told I'd probably get a better answer here to my problem. Im trying to make a very basic text editor, that has image buttons for formatting the text. Just now I have if so if you want bold text ... you press the relevant image button and [[]b]...
  4. gi11ies

    Textbox Highlighting Text and Replacing

    Im trying to make a very basic text editor, that has image buttons for formatting the text. Just now I have if so if you want bold text ... you press the relevant image button and [[]b] goes into the textbox and when you finish the bold text you click it again [[]/b] goes into the text...
  5. gi11ies

    String Replace with HTML

    Im creating a simple forum just now that runs of an access datbase, I have the bare bones of the whole thing functioning, though Im wondering how I use the Replace command to post html into the datagrid. For example if a user enters a web address - ie www.website.com ... I insert it into the...
  6. gi11ies

    Word Doc Contents into Multiline Textbox

    Hi I have a multi-line text box on a form that I paste contents from Word Doc into, and then with a click on the submit button its entered into an Access database, stored in a memo field. When I retrieve the entry from the database I display it using a Label, and use the Replace command for...
  7. gi11ies

    Giving Focus to Minimized Web Page

    Hi Hi, I posted this in the .NET forum - but was told I'd probably have better chances of a response here ... which I kind of thought, since I am using DOM. I am developing a web page based messaging system, where users log in, and if there is a message they are told on the web page they have...
  8. gi11ies

    Returning Last 3 records

    Im wondering how I return the last three records in any table? Any help would be great Gillies
  9. gi11ies

    Giving Focus to Minimized Web Page

    I am developing a web page based messaging system, where users log in, and if there is a message they are told on the web page they have a new message(s). I have a user control in an iframe on the page that checks for a new messages every 30 seconds or so, Im wondering if the user minimizes the...
  10. gi11ies

    Inserting value from one table to another

    Hi This is probably pretty simple, but any help would be great. I'm trying to insert the user ID of all users in a user table into another table. My simple select statment gets the users IDs .... Dim nicConn As OleDbConnection Dim nicConn1 As String nicConn1 =...
  11. gi11ies

    Datagrid value into Database?

    Hi Im displaying a datalist with each row having an ID, name and a checkbox - what I want to do is if the checkbox is checked then insert the ID for that row into the database. I can not get the value for inserting the ID for the selected row in the datagrid into the database. The code I am...
  12. gi11ies

    Putting $ symbol into Datagrid

    Hi I have a datagrid, and wish to put a $ symbol in beside the cost, has anyone any tips on how to do this? My datagrid code is: <asp:DataGrid id="scartdg" AutoGenerateColumns="false" runat="server"> <columns> <asp:HyperLinkColumn HeaderText ="Product" DataTextField="Product"...
  13. gi11ies

    Multiple Forms on a Page

    I am trying to work out how to get two froms on the one page. I am making up a shopping cart web site, and want to have a search facility on each page (textbox for string and search button), but when it comes to the page with the items on it, the form I use for adding an item to the cart (text...
  14. gi11ies

    Basic User Information (tracking)

    Hi I have added some tracking onto the home page of my web site, just so that I get very basic information (IP, time, browser, version, aol or not, platform) and I'm wondering if there is a way in which I can get the refferer page ... or the page that the visitor was on before visiting my site...
  15. gi11ies

    Array Contents into Email Body

    Im trying to put the contents of an two dimensional array that is stored in a session into the body of an email that is generated, but am getting an error thrown at my for loop line. The main parts of code I have are for the array are: cartArray = Session("cartArray") ' intCartMaxUsed =...
  16. gi11ies

    Shopping Cart Array - Remove Item

    Hi I am trying to make a simple shopping cart, and am using a 5 element array for each item: cartArray(0,intCartItem) = strProductName cartArray(1,intCartItem) = strProductID cartArray(2,intCartItem) = intProductPrice cartArray(3,intCartItem) = intProductQuantity cartArray(4,intCartItem) =...
  17. gi11ies

    Format a number (ie 243000 as 243,000)

    I'm looking to format a number to put a comma into it, ie have 243000 displayed as 243,000. Any tips would be great. Gillies
  18. gi11ies

    Labels and Carriage Returns

    Hi I have a multiline text box that I paste text/paragraphs from a word doc into - and save to an Access database in a memo field. Problem is when I try to display the content from the memo field on a page using an ASP:Label it shows it all without the carriage returns. for example in the...
  19. gi11ies

    Update Datatable from DataGrid

    I'm wondering if anyone has any tips on updating a value in a DataTable from a textbox in a DataGrid. I have my text box value populated in the DataGrid using: <itemtemplate> <asp:textbox id="txtQuantity" Width="30" Text='<%#Container.DataItem("Quantity")%>' runat="server"/> </itemtemplate> I...
  20. gi11ies

    DataTable rows into Database

    Using a DataTable for a kind of shopping Cart ... Im wondering how it is possible to add the items in each row of the DataTable into new rows in a database. ie DataTable items - item_no, item_name, item_quantity into item table on database - item_no, item_name, item_quantity Anyone with any...

Part and Inventory Search

Back
Top