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

    90 columns on my table - now what?

    Hi, I have 90 columns on my Jobs table now and i'm a bit concerned. No queries are running slow or anything but more columns keep creaping in, although i'd say 20% of these columns are bit columns it's still an awful lot for one table, no? Is it worth while creating another one to one...
  2. xloop

    Editable IE Page

    Ok, i'm trying to create an editable IE section in replace of a text area so i can enable some rich editing capabilities, however i'm having problems actually submitting the page. I have an htc like this: <div id=edit_area contenteditable align=left type="text" class="textbox"></div> (with...
  3. xloop

    Rich Textarea question

    How do i go about writing a rich textarea control, like the ones you see on Yahoo/hotmail/ebay ??? I'm just wondering how they actually do it and how i'd go about writing one. any help much appreciated. Rob
  4. xloop

    Simple Databinding Question

    Hi there, How would i go about appending another string to this databinding expression: <asp:HyperLink id=HyperLink2 runat="server" NavigateUrl='<%# DataBinder.Eval(((MobileListItem)Container).DataItem, "VehicleID") %>'> For some reason it won't let me append any text at the start or end...
  5. xloop

    Backup SQL Objects

    How would i go about automatactially creating SQL scrips for all the tables, views and stored procedures in a particular database? Need to do this every night (automatically) Any help much appreciated
  6. xloop

    ASP.NET Mobile Application

    I'm trying to get an emulator to run my new ASP.NET mobile application but i'm having trouble working out exactly what i need. Any ideas anyone???
  7. xloop

    Importing HTML

    Very new to this......infact never used Quark at all.. However, been given the task to find out the best of way of importing data into Quark while keeping the formatting. All being done programmatically. Can i do this with HTML templates and then somehow import these....or is it best done with...
  8. xloop

    Reverse engineer

    Hi Using asp.net Genuine question, not trying to hack anyone elses code, however i've recently had PC problems and managed to wipe all my solution and code files, however i still have a working version of the software on our server, is there anyway i can reverse engineer the dll's so i don't...
  9. xloop

    Importing Data

    Having a slight problem importing a list of sites from excel into an existing sql server table, basically i'm using access to import the list of sites (siteno,sitename,address1..etc) from excel to a new table, then use the link table from sql server to create a append query. This used to work...
  10. xloop

    redirecting

    How would i go about redirecting to a target frame (_top) ??? Response.Redirect(&quot;Page.aspx target=_top&quot;) obviously that doesn't work but you get the idea. Thanks
  11. xloop

    custom validator

    Does .NET have a mind of it's own or what... OK, using a custom Validator to check if a time (entered in a textbox) is in the past or not, if it is then args.IsValid = false; This works fine when i enter numerical data, ie. 09:00 works fine and the event fires.. it will even work if i put a...
  12. xloop

    Datagrid query

    Hi Working with ASP.NET I'm interogating each value in a datagrid with the ItemCreated event. What i'm trying to do is, search for a specified string in a column, if it equals that then set the appropriate DataNavigateURL property, something like this: DataGrid dg =...
  13. xloop

    Validation not working

    I cannot understand for the life of me why my validation isn't working... Basically, i'm using a custom validator that calls a server side function, if it's incorrect it calls args.Value = false; Yesterday this worked absolutely fine, now i've added one that does much the same sort of thing...
  14. xloop

    Advice on form submission

    Hi Scenario: Inputing new addresses Using classic ASP i would typically write one page that gathered the address information then i would submit that information to another form which then inserts the information into the DB. Ok thats fine, no problem. When it comes to using ASP.NET, it...
  15. xloop

    Advice on form submission

    Hi Scenario: Inputing new addresses Using classic ASP i would typically write one page that gathered the address information then i would submit that information to another form which then inserts the information into the DB. Ok thats fine, no problem. When it comes to using ASP.NET, it...
  16. xloop

    What IS going on..

    Some weird date problems.. I have a table with a date field, if i open the table the dates are displayed like they should be dd/mm/yyyy 00:00:00 If i do a simple select * from table statement then the dates are displayed like 2003-3-1 00:00:00 However, i do a select * from table where tdate...
  17. xloop

    Urgen query problem

    Very urgent problem.. I have a SP that is suddenly timing out; CREATE PROCEDURE sp_SearchStock @ClientName VarChar(50), @ItemStyle VarChar(50), @SerialNo VarChar(50), @StatusID VarChar(5) AS DECLARE @ClientID int SELECT @ClientID =...
  18. xloop

    Query problem

    Hi I need to produce a report which will have the months from Oct to Sep (columns) and for the rows i need certain criteria, i.e will look something like this for instance Oct Nov Dec Jan .... etc Forecast 10 20 40 50 Cost 30 44 55...
  19. xloop

    Architecture Advice

    Hi Currently have quite a large system in place, written in ASP, basically manages customers and jobs. System consists of over 200 ASP pages so it's fairly large. With this design i was able to break it up into modules fairly easy. My task now is take the application and recreate it in...
  20. xloop

    Complex Query

    I would really appreciate anyone's help with this as so far i can only return the expected results via about 5 queries and i would like to be able to do it in one. I have 4 tables in a hierarchy patten; tblClients tblProjects (links to tblClients) tblJob (links to...

Part and Inventory Search

Back
Top