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

    site.master from xmarin template

    I created a site using the template for xamarin. It created the following site.master. I can't figure out how to change the look and feel (colors, logo ect. <%@ Master Language="VB" AutoEventWireup="true" CodeBehind="Site.master.vb" Inherits="LaaundryWeb.SiteMaster" %> <%@ Import...
  2. gcole

    a href=&quot;# not working

    I need simple code for an FAQ type page. My code is not working, can anyone see what I am doing wrong? Thanks in advance <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>frame test</title> </head> <body> <a href="#section1">go to Section 1</a><br> <a...
  3. gcole

    Read from datagrid to update sql table

    I have an editable datagrid that allows the user to change values in some fields. When they have completed the changes I need to read from the datagrid. I have seached and can't find anything. Do you read it into an array? Help is very appreciated.
  4. gcole

    xls export merging cells

    I have a report that is exported to xls. When I try to sort it, it cannot becuase the cells are mergerd. How can I prevent this?
  5. gcole

    no tabs in xls fromat export

    I have a report that I am exporting to excel. I do not want the tabs for each group. How can I force all data on one sheet? I am using code to specify the format: RenderType = "EXCEL"; applicationType = "application/xls"; ftype = ".xls";
  6. gcole

    Install windows service with 1.1 framework

    I am trying to add a windows server from .Net to my PC. I uses to use installutil.exe but it doesn't work for the 1.1 framework. If I have to have the newer framework, were do I get it? MSDN?
  7. gcole

    public class variable in other project

    I have a folder watcher solution made up of several projects. How do I get to a variable (file name) from one project to another?
  8. gcole

    openquery error 0x8000ffff

    I have a linker server to an informix database. It quit working on Friday. Some of the drivers I needed were missing. I reinstalled and I can see the tables and views in the linked server but when I run : select commodity FROM OPENQUERY(ONLINE_TCP, 'SELECT * FROM adsave') I get: Server: Msg...
  9. gcole

    Read parameter defualt value from report in .Net

    I am able to read paramater defualts if the defaults are added to the report manager. However, I can't read the defaults that I add to and deploy with my report. I have the same issue with the description. Am I missing something when I deploy?
  10. gcole

    Multiple paramaters

    I am loading my parameter into an array and passing it to the RSWebServiceXS wsdl. How can I load multiple parameters? My code: ParameterValue[] optionalParams = { new ParameterValue() }; optionalParams[0].Name = "prmProject"...
  11. gcole

    Version of .Net or other software to design SQL Reports?

    What is the minimum version of .Net needed to design SQL Reports? I would like our report creator to use it for reports only. Are there any other options for designing?
  12. gcole

    Sending page setup info for printing

    When I export my report to .pdf, it only prints as a portrait/legal document. How can I send the options that I want. I built the PrinterDeliverySample but I don't know what to do with it. Thanks in advance. Gail
  13. gcole

    Limit export options?

    I would like to limit the export options for selected reports. I only want my users to export to .pdf. Any suggestions?
  14. gcole

    Can't get to http://localhost/reportserver/ReportService.asmx

    When I try to get to the ReportService, I get the following error: Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level...
  15. gcole

    Datagrid have to hit edit button 2X - why

    I have a datagrid with the following event: public void DataGrid1_EditCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e) { DataGrid1.EditItemIndex = e.Item.ItemIndex; } When I debug and hit the Edit button, it runs through this code until the selected record is...
  16. gcole

    Get value of datagrid selected item

    I have a sumbit button in my datagrid. When I trap the SelectedIndexChanged event, how do I get the value of what was selected? Thanks
  17. gcole

    Is this how clustering works

    I have been researching the clustering of servers and SQL. Here is my understanding: 1. Clustering SQL Server does not load balance. 2. The purpose is for failover only. Are my conclusions correct?
  18. gcole

    tempdb permission removed on reboot?

    I have given a user db_owner rights to tempdb. The rights are removed when the server is rebooted. It appears they have been removed at other times as well. Any idea how to make them 'stick' and why they are rempved?
  19. gcole

    prevent execution of piggy backed variables

    I have a variable sent from an asp page as follows: set @test = 'OConnor';select * from dbo.TableName The SP only recognizes the 'OConnor' piece. How can I prevent the select code from executing? Can this be done at the DB level?
  20. gcole

    Export a dynamic table

    I need to export a table that has columns that constantly change. This table is created through an SP. DTS is giving me a problem as it wants the Transformations mapped. BCP also needs a format file. Any ideas?

Part and Inventory Search

Back
Top