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

    Session variables converter?

    Morning all, I'm in need of some help with something I really should know but for the life of me I can't get to work!!! I'm trying to pass a list of file uploaders into and out of a session variable. ie: private List<FileUpload> files; Session["files"] = List; List = Session["files"]...
  2. Trebor100

    CompositeControl &amp; CustomValidator

    Morning everyone, I hope someone out there can help me here as I'm sure I'm slowley going mad! I'm trying to get a CustomValidator working on my CompositeControl. The control is being added fine during the CreateChildControls: titleVal = new CustomValidator(); titleVal.Display =...
  3. Trebor100

    CustomValidator ValidateEmptyText

    Afternoon all, I'm hoping that someone can save me from drink tonight by helping out on this one. I have a CustomValidator as follows: <asp:CustomValidator ID="customVal_1" runat="server" ValidateEmptyText="true" ControlToValidate="textBox" ClientValidationFunction="doStuff"...
  4. Trebor100

    Wav to text assistance

    Afternoon all, I've just started playing with SAPI - i've got the text to wav working fine however I'm trying to get a wav to text converter written also. I've got a problem whereby the recognition event isnt fired in the code below: wavfile = "c:/ccs_audio/111.wav"; wavrecocontext =...
  5. Trebor100

    references - new versions?

    I have a .net solution that uses references. How does .net get a newer version of a dll (active X)? Does it check the version number? the date time stamp? This comes from a 3rd party api that have released a new dll which a web service is not picking up.
  6. Trebor100

    Open MS Access bypassing the autoexec.

    All - i'm having problems getting the MS Access version of a database. I am using the following function: Function GetMdbVersion(l_Mde) on error resume next Dim l_AVer Dim l_Acc Set l_Acc = CreateObject("Access.Application") l_Acc.AutomationSecurity = 3 l_Acc.SendKeys("+")...
  7. Trebor100

    asp.net httphandler calling on all web requests

    Hello, I'm currently working on a solution that injects branding into all web requests. I've gone down the asp.net httphandler route as the majority of our web solutions use this framework. My question is this: How do I call this asp.net component on say classic ASP, JSP web requests? I'm...
  8. Trebor100

    response.redirect?

    Hi all, fingers crossed this is a quick and easy question. I'm doing an error control page that attempts to redirect you to your destination every 20 seconds. The error page loads a-okay and redirects when the page is up however if the page is still down i get the diagnose windows connection...
  9. Trebor100

    httpmodule header / footer speed issue

    Afternoon everyone,I'm working on a httpmodule for adding a custom header and footer to all my sites. The concept is great but the performance is slow :( I'm after adding the header and footer from a specific location (ie not hard coded). What i'm doing is scraping the html from the location...
  10. Trebor100

    httpmodule header / footer speed issue

    Afternoon everyone, I'm working on a httpmodule for adding a custom header and footer to all my sites. The concept is great but the performance is slow :( I'm after adding the header and footer from a specific location (ie not hard coded). What i'm doing is scraping the html from the...
  11. Trebor100

    http modules in machine.config?

    Morning all, I'm just getting my head round http modules and have successfully got one working a-okay with an application using the web.config as follows: <httpModules> <add name="MyModule" type="MyModule.SyncModule, MyModule" /> </httpModules> Now - i'm trying to get it so that my standard...
  12. Trebor100

    Nested gridview help

    Hi all, Does anyone know how to reference a control on the current row of a gridview from the rowcommand of a nested gridview? i.e. im writing a custom save function in the rowcommand of the child gridview and need to get the value of a textbox from the current row in the parent gridview. I'm...
  13. Trebor100

    sendRequest problem

    Hi all, Im v new to PHP and am having a problem on an opensource element of code. I know the code works as it was functioning on my old laptop before it went bang but i cannot get it working on my new laptop. The line of code is as follows: $xmlstr = sendRequest($path, $body); I've no doubt...
  14. Trebor100

    Value cannot be null. Parameter name: source

    Hi All - I'm really stuck and need your help. Background: The error occurs on a photo gallery image approval page and only occurs on approximately 10% of images submitted into the photo gallery. I’m getting the following error: Value cannot be null. Parameter name: source on the...
  15. Trebor100

    write metadata .net 1.1

    Hi - I really hope someone can help me here as am well stuck. I'm forced to use .net 1.1 and need to be able to write the title and comment onto a .jpg via a web interface (prop id's 40091 and 40092 respectivly). Can anyone out there help? from hours of googling (is that a word?) I havent...
  16. Trebor100

    setting focus on a control created through controls.add

    Hi - very quick (and hopefuly easy) question. How do I set focus to a control that has been created through controls.add as the txtBox.focus() is not there? many thanks. T
  17. Trebor100

    Help! Group by description and return top id for each instance?

    Hi, Im stuck... really stuck. The situation is this - i've got a table which has an id field and a description field along the lines of: ID Desc 1 Asda 2 Tesco 3 Safeway 4 Asda 5 Tesco 6 Tesco What i need to do is return one instance of each desc together with a corresponding...
  18. Trebor100

    Datagrid binding problem not showing any data.

    Hi all, I've got a basic webform with a datagrid control on it. the column collection is setup with 6 columns contained in the course table however the following code does not populate any data into the control. string SelectCmdString = "SELECT * FROM Course"; string conString =...
  19. Trebor100

    Datagrid column alignment question

    Hi all. Got a stupid problem here and was hoping someone could point at me, laugh, and tell me what i've done wrong. The problem is a simple one. I need to set the Places Remaining column to align right in the following code: DataTable myDataTable = new DataTable(); DataRow myDataRow...
  20. Trebor100

    List files in unc path

    Hi all, Quick question. I have a unc path which contains a load of files. i need a routine that can list all the files in this folder. anyone got any ideas? thanks in advance Rob

Part and Inventory Search

Back
Top