- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
7 Posted Topics
Hi, I am having issues with popup panels disappearing because the control is posting back I have a popup extender on a page which pops out a panel that contains a control I have created <asp:scriptmanager ID="Scriptmanager1" runat="server"></asp:scriptmanager> <ajaxToolkit:ModalPopupExtender ID="PopupExtender1" PopupControlID="Panel1" runat="server" TargetControlID="Button1"> </ajaxToolkit:ModalPopupExtender> <asp:Panel ID="Panel1" runat="server" BorderStyle="None" BorderWidth="1px" ClientIDMode="Static" … | |
Re: Hi, there are a couple of syntax errors in the code you posted... Try removing the comma from the end of the input variable and the semicolon after the closing brackets so that it reads CREATE FUNCTION dbo.GetWorkingDays2 ( ` @InputDate SMALLDATETIME` ) Also you have two 'SELECT COUNT()' statements … | |
Re: 1. Put the code that does the printing into a seperate method that returns a bool (True = there are more pages to print) 2. Change document_PrintPage to call it, setting e.HasMorePages to the result [CODE] private void document_PrintPage(object sender, PrintPageEventArgs e) { e.HasMorePages = DoPrint(e.Graphics); } private bool DoPrint(Graphics … | |
Re: This might be something you've already done but just double check that 'SQL Server Browser' service is running in the machines list of services. Also check that the 'SQL Server (<Default Instance>)' service is running too. Kirst | |
Hi, I have replication configured on a SQL 2008 Database. The tables involved are something like this; [INDENT]tbl.Product ProductID Int ProductName NVarchar(max) ImageID Int FK_Product_Image FOREIGN KEY(ImageID) REFERENCES tbl.Image (ImageID) tbl.Image ImageID Int Image Image[/INDENT] tbl.Product is part of a Transactional publication with updatable subscriptions. tbl.Image is part of a … | |
Hi, I am trying to set up transactional replication on a MS SQL 2008 database that has two Schemas, both schemas have some tables with the same names. Schema A A.Customer A.Product A.Invoice Schema B B.Customer B.Product B.Incoive My first problem is actually configuring Replication on the publisher using the … | |
Re: Hi Dan, I am in a similar position myself. I graduated 3 years ago with a 1st in IT and currently work in the private sector as a Software Engineer. Although I now have 3 year’s experience as a software Engineer on top of my degree I am also looking … |
The End.