Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
5 Endorsements
Ranked #341
Ranked #4K
~3K People Reached
Favorite Tags

7 Posted Topics

Member Avatar for KirstyHunter

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" …

Member Avatar for BMXDad
0
304
Member Avatar for Fahhad

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 …

Member Avatar for BitBlt
0
248
Member Avatar for ChrisHunter

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 …

Member Avatar for ChrisHunter
0
949
Member Avatar for Behseini

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

Member Avatar for BitBlt
0
181
Member Avatar for KirstyHunter

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 …

Member Avatar for KirstyHunter
0
179
Member Avatar for KirstyHunter

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 …

Member Avatar for KirstyHunter
0
1K
Member Avatar for Nulty

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 …

Member Avatar for KirstyHunter
0
122

The End.