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

    Visual studio 2010- Productivity power tools extension options

    I've got the Productivity power tools extension installed, when it was first installed ctrl+alt+shift+o opened the large option window that let me choose which elements to highlight amongst many other things. Now instead of opening the option window I get a "Ó" Is there an alternative way of...
  2. glyn6

    html in textbox gives "A potentially dangerous Request.Form value"

    I've got a textbox that a user can enter html into. I want to save the contents of the box including any html, but when the user clicks the <asp:button, before any other code is called, the browser error message A potentially dangerous Request.Form value was detected from the client...
  3. glyn6

    vb.net winform application and the enterprise library

    I've used the enterprise library in vb and c# in web apps to access a sql server database and that all works nicely :-) I'm trying to use it in a vb.net winform application now however and I'm having nowt but hassle. I've reference the following .DLLs...
  4. glyn6

    sql server express date format problems

    The boss has given me the code for an old system written in VB6 that connects to a SQL Express database. When the code runs it flags up the error Run-time error -2147217913 (80040e07) The conversion of a varchar data type to a smalldatetime data type resulted in an out-of-range value When I...
  5. glyn6

    Outlook calendar appointment's background colour changing at random

    Has anyone ever had the background colour for appointments in an outlook calendar change seemingly at random? I can't see a pattern in which appointments are changing either by type, date/time or appointment type. It's all a bit random :-S
  6. glyn6

    DNS propagation

    Last week I was told by my sitehost that I needed to update the nameserver records for my sites. I did this in the control panel for my domain registrar. Saturday afternoon all my sites stopped working. Checking the whois record, they're all still pointing at the old IP address. The...
  7. glyn6

    Get/Set radio button value in code behind

    I've snipped some code out but essentially I have 3 radio buttons <asp:RadioButton ID="radBlue" runat="server" GroupName="radOptions" /> <asp:RadioButton ID="radRed" runat="server" GroupName="radOptions" /> <asp:RadioButton ID="radGold" runat="server" GroupName="radOptions" /> which are layed...
  8. glyn6

    Preferred method for connecting C# to a database

    I know this might be a bit of an openended question but what's considered the best way/method/technology for connecting c# to a sql server? And does anyone have any links to samples of the same?
  9. glyn6

    T-SQL to return a specific range of records

    You can select the top x number of records by using SELECT TOP 10 * FROM table is there a t-sql way of getting the 11th to the 20th records for example? ta
  10. glyn6

    Internet Explorer box model bug

    This is a general question about this. If this only affects pre-IE6 versions of internet explorer if you're using standards-compliant mode (which you should be???) according to wikipedia (the source of all truth in the world) do we need to worry about it anymore.
  11. glyn6

    Resizing images automatically in code

    I'm after some way of automatically resizing an uploaded image in asp.net so I get a thumbnail and the original. I've tried a few ways which all had awful results and the general answer seems to be "use PHP code to do it as it does it well" which isn't much help
  12. glyn6

    .ascx name is &quot;ambiguous in the namespace&quot;

    In one project I keep getting this happen at random Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message...
  13. glyn6

    Concatenating the results of a subquery into a single field

    This is my stored procedure SELECT DISTINCT BreederID, (BreederLastname + ', ' + BreederForename + ', ' + BreederTitle) as SurnameForenameTitle, (select breedname from breed where Breed.BreedID = BreederBreedLink.BreedID) SpecialistBreedList FROM Breeder INNER JOIN ProjBreederBreedLink ON...
  14. glyn6

    master page being called twice

    I've got a page with an asp:Repeater paginator. I've used the same code elsewhere and everything is fine, but on this one site, the page_load event is fired twice when I click on the next or previous page button. I've got AutoEventWireup="false" and removed all the images just incase there...
  15. glyn6

    Passing variables between pages and user controls

    I've got a master page with a user control in it and a content page. I do a database call in the page_load of the content page and want to pass one of the resultant values to the user control in the master page. Is there a way other than setting a session variable to pass the value? Is there...
  16. glyn6

    SELECT statement returning integer value

    I'm trying to return the value of a COUNT query as an integer can someone tell me what I'm doing wrong now? CREATE PROCEDURE [dbo].[Countit] AS BEGIN SET NOCOUNT ON; SELECT COUNT(CompanyDetailID) as CountOfID FROM mainCompanyDetail WHERE Deleted = 0 return CountOfID END Thanks
  17. glyn6

    ASP Validators

    I've got a required field and a regular expression validator on the same text box, both of which work. The only problem is the asterisk marking the invalid field doesn't line up with the side of the text box. i.e. |=====| this is a textbox... If the textbox is empty then the validator looks...

Part and Inventory Search

Back
Top