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

    OnSelectedIndexChanged not firing when selected index set in code behind.

    Hi there. I am having problems with OnSelectedIndexChanged. If fires if I manually change the selected item in the drop down but not when I select an item in the dropdown in the code behind. I have checked and all the values are different, the drop down is not reloading when I have changed...
  2. Jacqui1811

    Could do with a little advice to start off with.

    Hi, I hate how broad this question is but I could really do with some help. I have played about a bit with Sharepoint before and published a form template to a form library but that is as far as my experience goes. I have been asked to develop a form that writes customer information to a...
  3. Jacqui1811

    Command event doesnt fire for button dynamic added to end of datagrid.

    Hi, I dynamically add a link button to my datagrid with a command name etc but the Item Command event handler won't fire. I add the datagrid event handlers in the onload event like so : grdFunds.EditCommand += new DataGridCommandEventHandler(grdFunds_Edit)...
  4. Jacqui1811

    Hi, I want to be able to read the

    Hi, I want to be able to read the text from an uploaded word document into a string and save the string in a resx file. I am fine doing this if the document is a txt or a html by using : //// html and text doc this works. StreamReader sr = new StreamReader(FileUpload.PostedFile.InputStream)...
  5. Jacqui1811

    Log4Net not logging.

    Hi there. I have used log4net many times before with success but am having problems getting it to log in this one web site. I have [assembly: log4net.Config.XmlConfigurator(Watch = true)] in my AssemblyInfo.cs Here is the code in the page at the top is. private static readonly ILog log =...
  6. Jacqui1811

    MCMS edit template issue

    Hi, I have an issue with a site I have inherited, it is an MCMS 2002 SP2 project. I have managed to check out the project from VSS and have opened the project with the Template Explorer menu populated nicely. However when I try and open up the template to edit I get Error message: Could not...
  7. Jacqui1811

    Subreport will now show.

    Hi, I have a main report and a sub-report which gets its data from a different table. When I run the main report it does not show the sub report. The sub report runs on it's own as a main report and shows me the data I expect to see. There are no parameters or anything complex. I have added a...
  8. Jacqui1811

    help with passing variables into stored proc

    I have an issue with the sql for a report and wondered if anbody could help. I want to pass an entire where clause to a stored procedure to make filtering easy for the report. So I will have @filter = " where name = 'myname' ", exec sp_get name @filter the stored proc reads. sql = 'select *...
  9. Jacqui1811

    Preventing 'Save As' on Excel 2007 Workbook

    Hi there, I am in need of a push again :). I want to stop the save as buttons working on an opened excel 2007 workbook. I am also trying to disable the copy, cut and save opetions as well. Here is the code I am using to open it and what I have already to try and stop the save as and other...
  10. Jacqui1811

    Changing the text in statusbar of mdiparent

    Hi folks. I want to set the text in the mdi parent from a child form but have had no luck. Can anybody give me a push in the right direction :) Thanks. Jacqui.
  11. Jacqui1811

    Issue with populating report from stored proc

    Hi, really need a bit of help on this one. I am using 2008 and am creating a report using the report wizard and am having problems when I try and run the project the report sits in. I am using a stored procedure to populate the report and if you preview the data it is there, however when you run...
  12. Jacqui1811

    Localising a grid view

    I am using a global resource file and want to localise the text for the hyperlinks and the databound fields. It doesn't seem to be finding them though. <asp:GridView ID="blogsGridView" runat="server" AllowPaging="True" AllowSorting="False" AutoGenerateColumns="False"...
  13. Jacqui1811

    fs.copyfile giving error

    Hi, I am trying to download a file from one server to another, using this code. FS.copyfile "http:somedomain/somefolder/somemp3.mp3", "c:\dropbox\" Both of the paths exist and if I put the correct source url into a web browser I can download just fine but I get the following error when running...
  14. Jacqui1811

    Unable to edit DTS package after installing DTS designer components

    Hi, I want to view a DTS package installed in a sql server 2005 DB. I have installed the add on "Microsoft 2000 DTS designer components" and rebooted the sql server. Now when I try to open a DTS package I get an error message saying "This package cannot be edited. SQL Server 2000 DTS...
  15. Jacqui1811

    DTS rounding error with decimals.

    Hi, My DTS package does a transformation that when broken down is 1000 - 999.69 this should return the value of 0.31 but my DTS is returning 0.3 if I round to 2 or 0.309 if I round to 3. Has anybody any ideas ? Thanks. Jacqui.
  16. Jacqui1811

    installing VMWare Tools issue

    Hi folks. Not sure what I am doing wrong. I am running VMWare on w2k and have Ubuntu Linux (Dapper Drake) on the virtual machine. If I try VM -Install VMWare tools then an image of a disc drive appears on my desk top. I If I go back into V M then I have the option to stop the install. It stays...
  17. Jacqui1811

    PDF Generation.

    I am trying to port an asp.net site to php, the new client will not install windows but wants me to replicate a site I did for him a while back in .net. In the other site I used the aspPDF from websupergoo and just sent in the urls of the desired reports to produce the pdfs. Is there anything...
  18. Jacqui1811

    General hints and tips please.

    I am starting a project which I am going to have to maintain off site as it will be hosted/used in another country, I will probably only go on site once every 2 months for a few days. I am wondering if anyone has any tips/hints etc for offsite maintainability that I can bare in mind whislt...
  19. Jacqui1811

    Weighted randomisation.

    I am trying to do a flashcard project to help learn a langauge and I have all the words in a category in a nice array in the format : key -> combination_id , value -> 1 key -> eng_word, value -> cat key -> for-word, value -> neko key -> skill_level, value -> 3 I have a lot of these in the...
  20. Jacqui1811

    Return focus to field when validation fails.If the

    Hy guys. I have a few textboxes that need to be numerical. The on blur event fires an isNumerical javascript function. If the value is not numerical I show an alert box stating that the value needs to be numerical. Problem is that I want to return focus to that field and at the moment it just...

Part and Inventory Search

Back
Top