Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for moorcroft

Hi, I'm wondering if someone could please provide me the steps for extending/repeating my wirless signal so that I can have greater wireless range throughout my house. I have 2 wirless Netgear routers, a DG934GT ADSL router (base unit) and WGR614v9 cable router (repeater). I've flashed both routers with the …

Member Avatar for Xlphos
0
196
Member Avatar for moorcroft

Hi I'm not too sure how to create the attached image effect where the right hand side is my main content and it shades onto my left sidebar which has a gradient effect downwards.

Member Avatar for moorcroft
0
66
Member Avatar for moorcroft

Hi I'm trying to map some tables using Nhibernate and it generally works apart from when it comes to one-to-many classes. I have a Visits table where each visit has many Inspection records. The mapping file for Visits contains the following: [code=c#]<bag name="Inspections" lazy="false" fetch="select" cascade="none" inverse="true"> <key column="VISIT_COUNTER"/> <one-to-many …

0
85
Member Avatar for moorcroft

Hi, I have a solution set up in .Net with a website. Each page is written in aspx and each code behind file are in the format of aspx.cs. For some reason when I build the solution it builds successfully although does not compile these code behind files to a …

Member Avatar for moorcroft
0
484
Member Avatar for moorcroft

Hi I have a TreeView object created on my website using the following code: In my Page_Load method I call BuildDocumentNavigationTree() as in: [CODE=C#]private void BuildDocumentNavigationTree() { TreeNode rootNode = new TreeNode(currentDocumentStructure.Label); rootNode.Value = currentDocumentStructure.UniqueId.ToString(); rootNode.Value = rootNode.Value + " : " + currentDocumentStructure.Title.ToString(); AddChildElementNodes(rootNode, currentDocumentStructure); TreeView1.Nodes.Add(rootNode); } private static …

Member Avatar for DdoubleD
0
616
Member Avatar for moorcroft

Hi I use the following code to connect to an orace database in Visual Studio 2008 and it is falling over with the exception of ServerVersion threw an invalid operation exception at line 3: [CODE=C#]m_strConnectionString = Settings.GetMandatoryConfig("databases", "SourceDB"); m_strQueryTerminator = Settings.GetConfig("databases", "QueryTerminator"); m_odbConn = new OleDbConnection(m_strConnectionString); m_sql = new SQL(DatabaseType.AnsiSQL, …

Member Avatar for cgyrob
0
110
Member Avatar for moorcroft

Hi I am looking for help with an xsl transform of an xml file. The problem is with <xsl:with-param>. The following is what I have: [code=xml]<xsl:param name="paramTest">$LINKNUM$</xsl:param> <key name="$LINKNUM$">SELECT count(1) from applications</key> <xsl:choose> <xsl:when test="$paramTest = '0' "> do this........ </xsl:when> <xsl:otherwise> do this......... </xsl:otherwise> </xsl:choose>[/code] This select count returns …

Member Avatar for dnanetwork
0
80
Member Avatar for moorcroft

Hi I have the following block of code copied from a previous project and it throws a null exception. This is because the value of HttpContext.Current is set to null and it therefore cannot return HttpContext.Current.Application. Can someone help me work out why this value is null? [CODE=C#] private static …

Member Avatar for sknake
0
524