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 SkipVought 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
  • 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

    Thanks vacunita. It was working I just didn't have enough space for the cursor to actually move.
  3. 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...
  4. gcole

    Read from datagrid to update sql table

    This is the solution that I have worked out. I loop through the datagird: foreach (DataGridItem di in dgPriceChanges.Items) Set the selected index: datagrid.SelectedIndex = cnt; Then I read the control(textbox) in the cell: di.Cells[8].Controls[1] I hope this helps someone else as I had a...
  5. gcole

    Read from datagrid to update sql table

    I did want to mention that I have a sample based on a dataset that works. The follwoing statement breaks: if (di.ItemType == ListItemType.Item || di.ItemType == ListItemType.AlternatingItem) { // Get the current row for update or delete operations later. DataRow dr =...
  6. gcole

    Read from datagrid to update sql table

    I will look into using that. Does a data adapter save the changes from and edited datagrid?
  7. 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.
  8. gcole

    xls export merging cells

    My report has a header and 1 table. I am not grouping anything either. Could something else cause this?
  9. 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?
  10. gcole

    no tabs in xls fromat export

    I know how to change it in the setup. I am rendering the report through code so I don't have to use the report manager interface. I read somewhere that I could change it with the render command but I can not find it. Thanks for the help.
  11. 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";
  12. 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?
  13. gcole

    public class variable in other project

    I ended up passing it from function to function. Yes, I am old school programming.
  14. 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?
  15. gcole

    openquery error 0x8000ffff

    The final on this is that we are using very old infomrix drivers. Rebooting several systems has fixed this. We are looking into getting newer drivers.
  16. 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...
  17. 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?
  18. 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"...
  19. 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?

Part and Inventory Search

Back
Top