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

    Malicious spyware problem

    I have some spyware on my computer, its totally messed up and I have no idea how to fix it. Windows defender says everything is ok. Ad-aware picks up tracking cookies and *****, but as soon as I've deleted them, they seem to get reinstalled. I can't see any strange processes running. I am now...
  2. JontyMC

    Search application

    I have a requirement to create a search application on a website that will search web pages from a dynamic list of domains. I've looked at google api and yahoo api, they both fall short of what I need, as the number of queries is limited. I've also looked at spidering the websites myself, but...
  3. JontyMC

    "Google" application

    I have a requirement to create a search application on a website that will search web pages from a dynamic list of domains. I've looked at google api and yahoo api, they both fall short of what I need, as the number of queries is limited. I've also looked at spidering the websites myself, but...
  4. JontyMC

    Image and text in button

    How can I create a (standards compliant) HTML button that has a left-aligned image and text in. I'm trying to recreate the XP toolbar buttons. I may need the button to have background image too. Any ideas? Jon "I don't regret this, but I both rue and lament it.
  5. JontyMC

    Intellisense not working with custom control

    I've overriden the GridView to create my own custom control. Works fine, drag from the toolbox and everythings great. However:<wcl:myGridView ID="ListEdit1" runat="server" DataSourceID="SqlDataSource1" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" PageSize="5"...
  6. JontyMC

    Custom Control and ConfigurationManager

    I want to create a custom control that queries the database specified by the connectionstring in the ConfigurationManager of the project that will use the custom control. How can I get a handle on the ConfigurationManager from the custom control? Jon "I don't regret this, but I both rue and...
  7. JontyMC

    Dojo Toolkit

    http://dojotoolkit.org/ Anyone used/got any thoughts on Dojo toolkit? What's the standard's compliancy/cross-browser like? Is it the best thing to use or are there better toolkits out there? Cheers Jon "I don't regret this, but I both rue and lament it.
  8. JontyMC

    Standards compliant HTML editor

    I'm building a site that will have a web-based "back-office", I suppose a content management system. I want to build the whole thing to comply to strict XHTML. Whats the best WYSIWYG HTML editor (free) to use, so the user can update their pages? Jon "I don't regret this, but I both rue and...
  9. JontyMC

    DataRelation problem

    I have dataset with two tables: Employee: ID, Name, CompanyID Company: ID, CompanyName I set up datarelation Employee.CompanyID/CompanyID. Now I set datasource of my datagrid to dataset.employee. My datagrid displays: ID - Name - CompanyID + Company: ID - CompanyName How can I get it to...
  10. JontyMC

    Datagrid highlight row

    I've seen some code for highlighting rows on a datagrid:private void dataGrid1_MouseUp(object sender, System.Windows.Forms.MouseEventArgs e) { System.Drawing.Point pt = new Point(e.X, e.Y); DataGrid.HitTestInfo hti = dataGrid1.HitTest(pt); if(hti.Type == DataGrid.HitTestType.Cell) {...
  11. JontyMC

    Program to watch another program

    I've got a console app that occasionally throws up an error. I tried for ages to figure out the bug, but cannot track it down. I figure it may be some sort of SQL timeout, but not sure. Anyway....as a solution, I need to write another app to 'watch' the first one. If the first errors, I need to...
  12. JontyMC

    Automatic login

    I've created a login control for a windows form app. I want to add a checkbox so users can save their login details and automatically login. Question is this - how and where do I save the login details? Jon "I don't regret this, but I both rue and lament it.
  13. JontyMC

    Server.MapPath in Console Application

    How can I do Server.MapPath("..") in a Console app? Jon "I don't regret this, but I both rue and lament it.
  14. JontyMC

    Primary key on view?

    Is it possible to put a primary key on a view in SQL Server 2000? Jon "I don't regret this, but I both rue and lament it.
  15. JontyMC

    JOIN question

    I have two tables I want to join, but I only want the top row of the second table, ie: table1: col1 col2 aaaa bbbb cccc dddd table2: col3 col4 aaaa eeee aaaa ffff Desired result: col1 col2 col4 aaaa bbbb eeee cccc dddd null At the moment I have SELECT * FROM table1 t1 LEFT JOIN table2 t2 ON...
  16. JontyMC

    Javascript &quot;listener&quot;

    I'm changing an actionscript variable using javascript (SetVariable). What's the best way to "listen" for the variable changing in flash? Is setinterval the best way? Jon "I don't regret this, but I both rue and lament it.
  17. JontyMC

    Limit to number movieclips?

    Is there a limit to the number of movieclips you can have in a flash movie? I'm creating a flash movie that will have over 5000 dynamically created movieclips. Could this cause a problem? Jon "I don't regret this, but I both rue and lament it.
  18. JontyMC

    Efficient Update or Insert

    Whats the most efficient way of entering data to a table - updating if exists and inserting if doesnt? Jon "I don't regret this, but I both rue and lament it.
  19. JontyMC

    Mail Attachment error

    I'm dynamically creating an Excel file using ODBC (server doesn't have Excel installed). This works fine. The problem comes when I try to email it. I set up a basic email which works fine:MailMessage m = new MailMessage(); m.From = aParams["emailFrom"]; m.To = aParams["emailTo"]; m.Subject =...
  20. JontyMC

    TestDirector the way to go?

    We're a small (10 people) web solutions company looking to improve the quality and effectiveness of our business. As we're expanding, we're finding it increasingly difficult to manage work-flows, quality testing and version control. Would TestDirector be viable solution for us? What alternatives...

Part and Inventory Search

Back
Top