User jammus - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T01:28:39Zhttp://stackoverflow.com/feeds/user/984http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1782029/tv-show-suggestion-algorithm-and-sql/1782073#17820731Answer by jammus for TV Show Suggestion Algorithm and SQLjammus2009-11-23T09:38:48Z2009-11-23T11:17:21Z<p>Not tested but something like this:</p>
<pre><code>SELECT name, Count(1) AS no_users
FROM
tvshowhitdetails
WHERE
userid IN (
SELECT userid
FROM
tvshow_hits
WHERE
showid = @showid
)
AND
showid <> @showid
GROUP BY
name
ORDER BY
no_users DESC
</code></pre>
<p>will give you the name of a show (<code>tvshowhitdetails</code> here is a view which joins your show_hits and show details table) and the number of people who have watched it. You can then get the total number of users in another query to work out your percentage.</p>
<p><strong>Update</strong><br>
Your tvshowhitdetails view looks like this:</p>
<pre><code>CREATE VIEW tvshowhitdetails
AS
SELECT tvshow_hits.UserId, tvshow_hits.ShowId, tvshows.Name
FROM tvshow_hits LEFT OUTER JOIN
tvshows ON tvshow_hits.ShowId = tvshows.ShowId
</code></pre>
http://stackoverflow.com/questions/1708582/classic-asp-class-properties/1721138#17211380Answer by jammus for Classic ASP class propertiesjammus2009-11-12T09:53:53Z2009-11-12T09:53:53Z<p>You should also use the Set keyword when assigning a property in the class.</p>
<pre><code>Class DictionaryClass
Private m_Dictionary
Public Sub Class_Initialize()
Set m_Dictionary = Server.CreateObject("Scripting.Dictionary")
End Sub
Public Property Get Dictionary()
Set Dictionary = m_Dictionary
End Property
Public Property Set Dictionary(value)
Set m_Dictionary = value
End Property
End Class
Function GetDictionary()
Dim dictionary : Set dictionary = Server.CreateObject("Scripting.Dictionary")
'some magic'
Set GetDictionary = dictionary
End Function
Dim oDictionaryClass : Set oDictionaryClass = New DictionaryClass
Set oDictionaryClass.Dictionary = GetDictionary()
</code></pre>
http://stackoverflow.com/questions/1695487/why-does-this-only-work-in-firefox-rendering-of-asp-net-mvc-partial-view-and-pas/1695845#16958450Answer by jammus for Why does this only work in Firefox? Rendering Of Asp.net MVC partial View and passing result back through ajaxjammus2009-11-08T09:23:04Z2009-11-08T09:23:04Z<p>Shouldn't you be using $.ajax() rather than $.getJSON() if you're wanting to receive HTML? Does doing this make any difference?</p>
<pre><code>$.ajax({
url: 'RenderMyView',
data: {field:'field'},
dataType: 'html',
success: function(response, textStatus) {
$('#id').after('<div>' + response + '</div>');
}
});
</code></pre>
http://stackoverflow.com/questions/1625145/how-do-i-prevent-the-repetition-of-business-logic0How do I prevent the repetition of business logic?jammus2009-10-26T14:29:38Z2009-10-27T14:00:55Z
<p>OK. So here's my simplified scenario. We have a system which handles orders for a number of clients. We want staff users to be able to view all orders and we want client user to only be able to view orders which relate to them.</p>
<p>When attempting to view a particular record we make use of the following function in our OrderSecurity class:</p>
<pre><code>Public Function CanViewOrder(order)
If currentUser.MemberOfStaff() Then
CanViewOrder = True
Else
CanViewOrder = (order.ClientId = currentUser.ClientId)
End If
End Function
</code></pre>
<p>At points when we want to display a list of orders to a user we can the following function defined in a OrderService class</p>
<pre><code>Public Function GetOrders()
If currentUser.MemberOfStaff() Then
GetOrders = GetAllOrders()
Else
GetOrders = GetAllOrdersForClient(currentUser.ClientId)
End If
End Function
</code></pre>
<p>This is OK for the above but doesn't hold up well as the rules get more complicated. Say, for example, we add another user type which represents a less trusted staff member who can only view orders from a sub-set of clients. We'd then have to add logic to the CanViewOrder and GetOrders functions (and potentially in the data access classes) which in my mind violates the DRY principle.</p>
<p>So, my question is: Am I missing a trick here - is there some way I can combine the business logic for permission to view orders in one place which both of these functions can use?</p>
<p>Or am I worrying too much and should just get on and have the logic in two places?</p>
<p>(In this particular application I'm using ASP Classic - don't hate the player, hate the game - but I'd be interested in how you solve this problem in any language)</p>
http://stackoverflow.com/questions/587189/how-can-i-run-sqlcmd-exe-from-an-asp-page-free-hat1How can I run sqlcmd.exe from an ASP page? (Free hat)jammus2009-02-25T18:18:15Z2009-10-26T14:46:58Z
<p>As part of our database revision control (and auto-installation) procedures we need to be able run sqlcmd.exe on various .sql files from within an ASP page. The code I'm using to do this is:</p>
<pre><code>Dim cmd : cmd = "sqlcmd -S " & DATABASE_SERVER & " -U " & DATABASE_UID & " -P " & DATABASE_PWD & " -d " & DATABASE_NAME & " -i """ & scriptPath & """ -b"
Dim wshShell : Set wshShell = Server.CreateObject("WScript.Shell")
Dim return : return = wshShell.Run(cmd, 0, True)
</code></pre>
<p>I have the code working on my development machine (running XP) but now that I've deployed it to our Windows 2003 server it's having problems. The problem being that the value for return is always 1. This also happens if I try to get it to run a batch file or anything else I can think of (if I change the value for cmd to an non-existing file it bombs out as I'd expect)</p>
<p>I've tried adding I_USR and I_WAM to have execute permissions on both sqlcmd.exe and cmd.exe but it still returns 1. If I open a command prompt at the server and do a "runas /user:servername\i_usr sqlcmd.exe" that works fine but running from the ASP page still doesn't work.</p>
<p>Also, when running the .sql scripts manually everything runs smoothly so there's no problem with them.</p>
<p>Are there any security settings on the server that I've forgotten to change within IIS or Windows generally to make it work?</p>
<p>Thanks in advance the internet.</p>
http://stackoverflow.com/questions/587189/how-can-i-run-sqlcmd-exe-from-an-asp-page-free-hat/1625260#16252600Answer by jammus for How can I run sqlcmd.exe from an ASP page? (Free hat)jammus2009-10-26T14:46:58Z2009-10-26T14:46:58Z<p>The problem was solved by changing the first line to:</p>
<pre><code>Dim cmd : cmd = "%COMSPEC% /C sqlcmd -S " & DATABASE_SERVER & " -U " & DATABASE_UID & " -P " & DATABASE_PWD & " -d " & DATABASE_NAME & " -i """ & scriptPath & """ -b"
</code></pre>
http://stackoverflow.com/questions/1329527/creating-multi-level-scrollable-menus-using-jquery-and-the-jdmenu-plugin1Creating multi-level, scrollable menus using jQuery and the jdMenu pluginjammus2009-08-25T16:50:25Z2009-09-27T00:48:53Z
<p>Hello.</p>
<p>In our application we're using <a href="http://jdsharp.us/jQuery/plugins/jdMenu/" rel="nofollow">jdMenu plugin</a> to create a hierarchical menu from nested unordered lists.</p>
<p><img src="http://img.photobucket.com/albums/v309/jammus/filterexample.png" alt="example" /></p>
<p>This works well until there are so many items in a menu that it is forced off the screen.</p>
<p><img src="http://img.photobucket.com/albums/v309/jammus/overflowexample.png" alt="it's too big!" /></p>
<p>In an attempt to fix this I've updated the plugin (actually the positionBy plugin that is a requirement of jdMenu) so that when a long menu is discovered the plugin reduces the height of the menu (ul), applies overflow:hidden and attempts to place it again. It then attaches a mousemove event to the menu so that when the users moves their mouse up and down the menu scrolls allowing them to see the hidden items. Like so:</p>
<p><img src="http://img.photobucket.com/albums/v309/jammus/mousescrollexample.png" alt="alt text" /></p>
<p>(print screen doesn't capture pointer but on the left screen it's at the top of the menu, on the right it's at the bottom)</p>
<p>This works when it is the last menu in the hierarchy that is too long as above, however if a menu further up the hierarchy is too long then it's sub-menus are not displayed because of the overflow:hidden which has been applied.</p>
<p>So, my question is... is there another way to achieve this effect without using overflow:hidden (or can I use it in a better way)? </p>
<p>Alternatively, is there a more suitable jQuery plugin which will allow me to do something similar?</p>
<p>Let me know if you need any further clarification. Thanks loads.</p>
http://stackoverflow.com/questions/1269140/jquery-fading-opacity-problem/1269310#12693100Answer by jammus for jQuery Fading Opacity Problemjammus2009-08-12T23:41:51Z2009-09-14T09:34:21Z<p>It seems to be working fine for me (Chrome, IE8 and Firefox 3. under Vista).</p>
<p>Are you sure the images are having time to load? Do you get the same problem if you resize the images to 100x100 and re-run the script?</p>
<p><strong>Other thoughts</strong></p>
<p>I'm getting an error on line 320 (sub options for nav 6) because you don't have any item on the page with an id of nav6_sub so that may be causing problems for you.</p>
<p>You're duplicating a lot of code on that page (are you copying and pasting or having it created inside a loop?), you should probably look at creating a jQuery plugin or something. I've always found this page to be useful (as well as the jQuery docs of course): <a href="http://www.learningjquery.com/2007/10/a-plugin-development-pattern" rel="nofollow">http://www.learningjquery.com/2007/10/a-plugin-development-pattern</a></p>
<p>Also, it's probably not related, but your HTML around the sub navigation could use some cleaning up. Instead of </p>
<pre><code><ul>
<li><a href="#" id="nav5" onmouseover="dropDown('nav5_sub')"></a></li>
<div class="sub" id="nav5_sub">
<li>Private Client Log In</li>
<li>Student Log In</li>
</div>
</li>
</ul>
</code></pre>
<p>You should have something like have:</p>
<pre><code><ul>
<li>
<a href="#" id="nav5" onmouseover="dropDown('nav5_sub')"></a>
<ul class="sub" id="nav5_sub">
<li>Private Client Log In</li>
<li>Student Log In</li>
</ul>
</li>
</ul>
</code></pre>
http://stackoverflow.com/questions/273410/how-many-dimensions-in-my-array-or-get-the-last-one/1342049#13420490Answer by jammus for How many dimensions in my array or get the last one jammus2009-08-27T16:00:19Z2009-08-27T16:00:19Z<p>Similar approach to feihtthief's answer here as I assume this is what you want rather than the size of a specified dimension.</p>
<pre><code>Function NumDimensions(arr)
Dim dimensions : dimensions = 0
On Error Resume Next
Do While Err.number = 0
dimensions = dimensions + 1
UBound arr, dimensions
Loop
On Error Goto 0
NumDimensions = dimensions - 1
End Function
</code></pre>
<p>Then calling it as so:</p>
<pre><code>Dim test(9, 5, 4, 3, 9, 1, 3, 5)
NumDimensions(test)
</code></pre>
<p>will give you the value 8</p>
<p>It's a bit crappy but it'll do what you asked.</p>
http://stackoverflow.com/questions/1296056/asp-using-function-parameter-to-refer-to-recordset/1298276#12982760Answer by jammus for ASP - Using Function parameter to refer to recordsetjammus2009-08-19T07:19:07Z2009-08-19T07:19:07Z<p>If you really wanted to pass in the name you could do </p>
<pre><code>Sub DisplayData(rsName)
Eval("Response.Write(" & rsName & ".Source)")
End Sub
DisplayData("rs1")
</code></pre>
<p>But don't. It's silly and can get you in to trouble. You should do it how the other guys say and pass in the recordset itself.</p>
<pre><code>Sub DisplayData(rs)
Response.Write rs.Source
End Sub
DisplayData(rs1)
</code></pre>
http://stackoverflow.com/questions/1287243/when-am-i-able-to-access-the-asperror-object0When am I able to access the ASPError object?jammus2009-08-17T10:32:50Z2009-08-17T18:10:43Z
<p>I've begun using <a href="http://aspunit.sourceforge.net/" rel="nofollow">ASPUnit</a> to unit test my classic ASP code. This is all good and I'm happy. The only problem is with the error messages it displays when a test generates a runtime error. For example, if I've not defined a variable somewhere in my function I get the error:</p>
<pre>
Microsoft VBScript runtime error (500): Variable is undefined
</pre>
<p>What would be more useful is if it could tell me which file/line the error occurred on. I know that I can get this information from the ASPError object which is returned by the Server.GetLastError() and elsewhere in my project I have a custom 500 error page which makes use of this method to automatically report crashes to Fogbugz. However when I try to access Server.GetLastError anywhere else the information returned is blank. For example, the following code will output zero rather than the expected 4.</p>
<pre><code><%
Option Explicit
On Error Resume Next
aVariable = "hello"
Dim errObj : Set errObj = Server.GetLastError()
Response.Write errObj.Line
%>
</code></pre>
<p>Is this the correct way to access ASPError or is it only possible on custom error pages? Is there a better way to get error messages reported within ASPUnit?</p>
http://stackoverflow.com/questions/1264545/can-you-make-an-ajax-call-inside-of-another-ajax-call-in-jquery/1264628#12646282Answer by jammus for Can you make an AJAX call inside of another AJAX call in jquery?jammus2009-08-12T07:05:47Z2009-08-12T07:05:47Z<p>There's nothing wrong with having an ajax call inside an ajax callback. In fact, you're not even doing that, what you're doing here is:</p>
<ol>
<li>Ajax call</li>
<li>If call is successful and returns 'captcha' then bind a function to the cbox_closed event</li>
<li>When the cbox_closed event is triggered call the bound function which contains another ajax call</li>
</ol>
<p>Some things to check for:<br />
Is the sever returning successfully? (no 404, 500 error etc)<br />
You're anticipating a json response. Does it contain data like {response:'captcha} that you're checking for?<br />
When is the cbox_closed event triggered? Are you sure that it is happening?</p>
http://stackoverflow.com/questions/1253652/asp-session-value/1258909#12589090Answer by jammus for ASP Session valuejammus2009-08-11T07:39:09Z2009-08-11T07:39:09Z<p>You need to cast varCustomerID to a string for the query. Slight change to Paul's answer should get you working but like he says you need to be careful of injection attacks.</p>
<pre><code>"INSERT INTO Orders (OrderCustomer,OrderGrandTotal,OrderStatus) VALUES (" & varCustomerID & ",0.00,3)"
</code></pre>
http://stackoverflow.com/questions/1234585/is-there-an-easier-way-to-reference-the-source-element-for-an-event/1234624#12346241Answer by jammus for Is there an easier way to reference the source element for an event?jammus2009-08-05T17:24:13Z2009-08-06T14:06:55Z<p>You can do this:</p>
<pre><code><a href="" name="#hideable_table0" class="tableHider">show</a>
</code></pre>
<p>and change your javascript to this:</p>
<pre><code>$('a.tableHider').click(function() {
var table = $(this.name); // this refers to the link which was clicked
var button = $(this);
table.slideToggle("slow", function() {
if ($(this).is(':hidden')) { // this refers to the element being animated
button.html('show');
}
else {
button.html('hide');
}
});
return false;
});
</code></pre>
<p>edit: changed script to use the name attribute and added a return false to the click handler.</p>
http://stackoverflow.com/questions/1231415/jquery-subcatogory-items-are-duplicated/1234573#12345730Answer by jammus for jquery,subcatogory items are duplicatedjammus2009-08-05T17:14:26Z2009-08-05T17:14:26Z<p>You'll need to provide some more information if you want a detailed answer. However, I'm guessing you can solve your problem with an isLoading flag. Check the status of this flag in your click handler - if it's false then set it to true and carry on, if not do nothing. Once your ajax request is complete reset it to false again. Something like this:</p>
<pre><code>var isLoading = false;
$('a.subcategory').click(function() {
if(!isLoading) {
isLoading = true;
$.ajax({
url: 'subcategory.html',
success: function() {
// update your page
},
complete: function() {
isLoading = false;
}
});
}
return false;
});
</code></pre>
http://stackoverflow.com/questions/1218152/how-can-i-animate-multiple-elements-sequentially-using-jquery/1218507#12185072Answer by jammus for How can I animate multiple elements sequentially using jQuery?jammus2009-08-02T09:15:47Z2009-08-02T09:15:47Z<p>You could do a bunch of callbacks.</p>
<pre><code>$(".button").click(function(){
$("#header").animate({top: "-50"}, "slow", function() {
$("#something").animate({height: "hide"}, "slow", function() {
$("ul#menu").animate({top: "20", left: "0"}, "slow", function() {
$(".trigger").animate({height: "show", top: "110", left: "0"}, "slow");
});
});
});
});
</code></pre>
http://stackoverflow.com/questions/1218479/jquery-replacing-a-button-in-defined-circumstances/1218498#12184980Answer by jammus for jquery - replacing <a> button in defined circumstancesjammus2009-08-02T09:10:23Z2009-08-02T09:10:23Z<p>Is the code called only on page load? If so the code inside the else block never gets executed.</p>
http://stackoverflow.com/questions/1195709/using-jqueries-validation-plugin-how-to-send-an-error-from-the-server-side-to-th/1196626#11966260Answer by jammus for Using jqueries validation plugin, how to send an error from the server side to the client side?jammus2009-07-28T20:45:41Z2009-07-28T21:09:32Z<p>You could create a custom validation function and couple it with an ajax call. In this case the ajax call will return the text 'true' or 'false'.</p>
<pre><code>var customFunction = function(value, element, param) {
var isValid = false;
$.ajax({
url: '/something',
data:{value: value},
success: function(data, textStatus) {isValid = data;},
dataType: 'json',
async: false
});
return isValid;
};
$.validator.addMethod("customFunction", customFunction, "That isn't valid.");
$('form').validate({
rules: {
fieldname: {
customFunction: true
}
}
});
</code></pre>
<p><strong>Edit</strong>: Actually, use the remote method that svinto mentions instead. I didn't even know that existed. I'm a fool.</p>
http://stackoverflow.com/questions/1180440/jquery-using-the-attr-with-custom-attributes/1181762#11817621Answer by jammus for jQuery: Using the attr with custom attributesjammus2009-07-25T09:44:42Z2009-07-25T10:26:54Z<p>You could use the <a href="http://plugins.jquery.com/project/metadata" rel="nofollow">metadata plugin</a>. Then your HTML would become:</p>
<pre><code><span class="{ time:'50', distance:'60'}"></span>
</code></pre>
<p>and your javascript would be:</p>
<pre><code>var data = $('span').metadata();
var time = data.time;
var distance = data.distance;
</code></pre>
<p>That way your markup will validate and you can get data into your javascript on the server-side.</p>
<p>edit: Just noticed that you have mentioned the metadata plugin already. Sorry, I got over excited and just posted without reading the question properly. I'll leave my answer here though in case someone else finds it useful.</p>
http://stackoverflow.com/questions/26137/vbscript-asp-classic/91504#915042Answer by jammus for VBScript/ASP Classicjammus2008-09-18T10:34:46Z2009-07-24T09:28:39Z<p>Remember to <em>program into</em> the language rather than program in it. Just because you're using a limited tool set doesn't mean you have to program like it's 1999.</p>
<p>I agree with JasonS about classes. It's true you can't do things like inheritance but you can easily fake it</p>
<pre><code>Class Dog
Private Parent
Private Sub Class_Initialize()
Set Parent = New Animal
End Sub
Public Function Walk()
Walk = Parent.Walk
End Function
Public Function Bark()
Response.Write("Woof! Woof!")
End Function
End Class
</code></pre>
<p>In my projects an ASP page will have the following:
INC-APP-CommonIncludes.asp - This includes stuff like my general libraries (Database Access, file functions, etc) and sets up security and includes any configuration files (like connection strings, directory locations, etc) and common classes (User, Permission, etc) and is included in every page.</p>
<p>Modules/ModuleName/page.vb.asp - Kind of like a code behind page. Includes page specific BO, BLL and DAL classes and sets up the data required for the page/receives submitted form data, etc</p>
<p>Modules/ModuleName/Display/INC-DIS-Page.asp - Displays the data set up in page.vb.asp.</p>
http://stackoverflow.com/questions/1163537/jquery-validate-ajax-beginform/1163767#11637671Answer by jammus for jquery validate & ajax.beginformjammus2009-07-22T08:10:44Z2009-07-22T20:19:14Z<p>It doesn't seem too hacky to me, but them I'm not the most elegant guy in the world. The only thing I think I'd do differently is set it up like this:</p>
<pre><code>$('#login').validate(); // setup form to use validation plugin
var options = {
beforeSubmit: function() {
return $('#login').valid(); // check form is valid
},
success: manageResponse
};
</code></pre>
http://stackoverflow.com/questions/1162463/how-to-get-crossslide-and-lightbox2-working-together-on-the-same-page/1163778#11637780Answer by jammus for How to get crossSlide and lightbox2 working together on the same page.jammus2009-07-22T08:13:48Z2009-07-22T08:47:13Z<p>Try changing your code snippet to the following:</p>
<pre><code>jQuery(function() {
jQuery('#imgHold').crossSlide({
sleep: 3,
fade: .5
}, [
{ src: 'images/featured/ftcont_img1.png' },
{ src: 'images/featured/ftcont_img2.png' },
{ src: 'images/featured/ftcont_img3.png' },
{ src: 'images/featured/ftcont_img4.png' }
]);
});
</code></pre>
<p>This might work as long as there are no other conflicts on the page.</p>
<p>See <a href="http://docs.jquery.com/Using%5FjQuery%5Fwith%5FOther%5FLibraries" rel="nofollow">this article</a> on docs.jquery.com for how to use jQuery with other libraries such as prototype and scriptaculous, both of which you're making use of in your example.</p>
http://stackoverflow.com/questions/1163386/jquery-autocomplete/1163755#11637550Answer by jammus for jQuery AutoCompletejammus2009-07-22T08:04:54Z2009-07-22T08:04:54Z<p>Your example also works if you move to another field which isn't an autocomplete field and I think this is how it's supposed to work. Compare it to a combo box. If you have its options pulled down and then tab to another field it closes the combo box.</p>
<p>If you never want the results to be hidden you could comment out the hideResults function call in the blur handler in jquery.autocomplete.js. However I'm assuming you'd want slightly more sophisticated behaviour so you may want to edit the function to suit your needs.</p>
http://stackoverflow.com/questions/1154452/recommended-xna-tutorials-to-start-to-learn-3d-for-the-first-time/1157870#11578701Answer by jammus for Recommended XNA tutorials to start to learn 3D (for the first time)jammus2009-07-21T08:07:25Z2009-07-21T08:07:25Z<p>I'm really enjoying <a href="http://rads.stackoverflow.com/amzn/click/0672330229" rel="nofollow">Microsoft XNA Game Studio 3.0 Unleashed</a>. It first chapters deal with 3D. It might start out too basic for you though if you're well versed in other areas of XNA.</p>
http://stackoverflow.com/questions/902554/xml-and-asp-retrieve-and-parse-a-remote-file/949660#9496600Answer by jammus for XML and ASP: Retrieve and parse a remote filejammus2009-06-04T10:11:02Z2009-06-04T10:11:02Z<p>Change line 4 of your original snippet to</p>
<pre><code>Set objXML = Server.CreateObject("MSXML2.DOMDocument.6.0")
</code></pre>
<p>and line 14 to</p>
<pre><code>Set oRoot = objXML.selectSingleNode("//response")
</code></pre>
<p>and you should be fine (assuming your xml is as AnthonyWJones describes).
<br /><br />
Your original //xml/response would get the text from a document that looked like this</p>
<pre><code><?xml version="1.0" ?>
<xml>
<response>hello</response>
</xml>
</code></pre>
http://stackoverflow.com/questions/945336/how-should-i-access-another-modules-dal0How should I access another module's DAL?jammus2009-06-03T15:10:29Z2009-06-03T15:19:53Z
<p>OK, so I have a couple of modules in my application. One is called ProductCatalogue and another is called Contracts. We now have a need for a contract to be associated with a number of products (eg the products which a party to a contract is allowed to order). Within the ProductCatalogue module we have a ProductDAL class which has the following functions</p>
<pre><code>Public Function GetProducts()
Set GetProducts = GenerateProductsList("SOME SQL")
End Function
Private Function GenerateProductsList(selectQuery)
Dim list : Set list = New List
Dim results : results = GetResultsFromDB(selectQuery)
'... for each row
Dim product : Set product = New Product
product.Id = results(field, index)
list.Add(product)
'loop ...
Set GenerateProductsList = list
End Function
</code></pre>
<p>Now, I want to get all products associated with a contract so I want to write a function that looks like this</p>
<pre><code>Public Function GetProductsForContract(contractId)
Set GetProductsForContract = GenerateProductsList("SOME SQL")
End Function
</code></pre>
<p>My question is, where should I put this function? I want to use the existing GenerateProductsList() function as it is a lot more complicated than it looks. There my question is "Where should I put GetProductsForContract"?</p>
<p>My options:</p>
<p>1) Put it in ProductDAL.
<br />
The problem with this is that ProductDAL suddenly becomes aware of what a contract is and I can see this getting quickly full of functions such as GetProductsForAllContracts, GetProductsForLiveContracts, etc, etc (and more when other modules want to access products) so really I'd like to keep those functions with the rest of the Contracts code.</p>
<p>2) Put it in ContractDAL and make ProductDAL.GenerateProductsList public.
<br />
Should I really be exposing this?</p>
<p>3) Create a new class which one method which has the sole responsibility of taking in an SQL dataset and returning a list of products.
<br />
Actually isn't this the same as 2?</p>
<p>4) Stop doing it wrong.
<br />
I'm not sure how. Show me. Then hold me.</p>
<p>edit: Also, what about AddProductToContract, RemoveProductFromContract where does this go? I'm leaning towards a new ContractProductManager class but what's the best way to access GenerateProductsList()</p>
http://stackoverflow.com/questions/458644/overload-constructors-in-vbscript/868394#8683940Answer by jammus for Overload constructors in VBScriptjammus2009-05-15T12:25:51Z2009-05-15T12:38:39Z<p>Just to alter slightly on svinto's method...</p>
<pre><code>Class Test
Private m_s
Public Default Function Init(s)
m_s = s
Set Init = Me
End Function
Public Function Hello()
Hello = m_s
End Function
End Class
Dim o : Set o = (New Test)("hello world")
</code></pre>
<p>Is how I do it. Sadly no overloading though. </p>
<p>[edit]
Though if you really wanted to you could do something like this...</p>
<pre><code>Class Test
Private m_s
Private m_i
Public Default Function Init(parameters)
Select Case UBound(parameters)
Case 0
Set Init = InitOneParam(parameters(0))
Case 1
Set Init = InitTwoParam(parameters(0), parameters(1))
Else Case
Set Init = Me
End Case
End Public
Private Function InitOneParam(parameter1)
If TypeName(parameter1) = "String" Then
m_s = parameter1
Else
m_i = parameter1
End If
InitOneParam = Me
End Function
Private Function InitTwoParam(parameter1, parameter2)
m_s = parameter1
m_i = parameter2
InitTwoParam = Me
End Function
End Class
</code></pre>
<p>Which gives the constructors...</p>
<pre><code>Test()
Test(string)
Test(integer)
Test(string, integer)
</code></pre>
<p>which you can call as:</p>
<pre><code>Dim o : Set o = (New Test)(Array())
Dim o : Set o = (New Test)(Array("Hello World"))
Dim o : Set o = (New Test)(Array(1024))
Dim o : Set o = (New Test)(Array("Hello World", 1024))
</code></pre>
<p>Bit of a ball ache though.</p>
http://stackoverflow.com/questions/301948/tips-for-writing-security-classes-for-user-authentication-and-authorisation2Tips for writing security classes for user authentication and authorisationjammus2008-11-19T13:56:34Z2009-05-02T12:14:33Z
<p>I have a bunch of objects in my application (Organisations, Individuals, Orders, etC) and I need a nice clean way to decide which users can and can't view/edit these objects. User have a range of permissions such as 'Can edit own contacts' and 'Can view team's contacts' and can also be members of groups such as 'Account Manager' so various things need to be checked (Is this user an account manager? Is this contact managed by this users team? Can this user edit his teams contacts?) before it can be decided if they have access to the object.</p>
<p>Previously most of the logic was inline but as it becomes more complex I've decided that it's best to move it out to new classes such as OrganisationSecurity, OrderSecurity, etc and creating methods such as CanEdit on them.</p>
<p>Is this the correct way to go? Any gotchas I should be careful of? How do you handle this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/746921/personal-development-plan-for-programmers6Personal Development Plan for programmersjammus2009-04-14T09:49:28Z2009-04-16T03:42:42Z
<p>Does anyone have any tips in putting together a personal development plan for a programmer?</p>
<p>What do you do at your organisation? Do you have a personal development plan? Did you set it yourself or did someone help you create it? Have you been involved in developing one for someone else? What <em>is</em> a personal development plan?</p>
<p>edit following first response: I'm not really talking about a tick-sheet of "you scored 4 at indenting code this month Mary, sort it out quick or you're fired" style metric. I'd like to help guide a programmer through a (continuing) period of self-improvement.</p>
http://stackoverflow.com/questions/699686/relative-date-time-for-classic-asp/720792#7207921Answer by jammus for Relative date/time for classic ASPjammus2009-04-06T09:33:59Z2009-04-06T09:33:59Z<p>This is the one I use. Pretty certain I just ripped it from Jeff's example that he used for this site.</p>
<p>Yes, yes I did: <a href="http://stackoverflow.com/questions/11/how-can-i-calculate-relative-time-in-c" rel="nofollow" title="How can I calculate relative time in C#?">How can I calculate relative time in C#?</a></p>
<pre><code>Function RelativeTime(dt)
Dim t_SECOND : t_SECOND = 1
Dim t_MINUTE : t_MINUTE = 60 * t_SECOND
Dim t_HOUR : t_HOUR = 60 * t_MINUTE
Dim t_DAY : t_DAY = 24 * t_HOUR
Dim t_MONTH : t_MONTH = 30 * t_DAY
Dim delta : delta = DateDiff("s", dt, Now)
Dim strTime : strTime = ""
If (delta < 1 * t_MINUTE) Then
If delta = 0 Then
strTime = "just now"
ElseIf delta = 1 Then
strTime = "one second ago"
Else
strTime = delta & " seconds ago"
End If
ElseIf (delta < 2 * t_MINUTE) Then
strTime = "a minute ago"
ElseIf (delta < 50 * t_MINUTE) Then
strTime = Max(Round(delta / t_MINUTE), 2) & " minutes ago"
ElseIf (delta < 90 * t_MINUTE) Then
strTime = "an hour ago"
ElseIf (delta < 24 * t_HOUR) Then
strTime = Round(delta / t_HOUR) & " hours ago"
ElseIf (delta < 48 * t_HOUR) Then
strTime = "yesterday"
ElseIf (delta < 30 * t_DAY) Then
strTime = Round(delta / t_DAY) & " days ago"
ElseIf (delta < 12 * t_MONTH) Then
Dim months
months = Round(delta / t_MONTH)
If months <= 1 Then
strTime = "one month ago"
Else
strTime = months & " months ago"
End If
Else
Dim years : years = Round((delta / t_DAY) / 365)
If years <= 1 Then
strTime = "one year ago"
Else
strTime = years & " years ago"
End If
End If
RelativeTime = strTime
End Function
</code></pre>
http://stackoverflow.com/questions/1782029/tv-show-suggestion-algorithm-and-sql/1782073#1782073Comment by jammus on TV Show Suggestion Algorithm and SQLjammus2009-11-24T12:46:37Z2009-11-24T12:46:37ZCan you give me a link to your dataset?http://stackoverflow.com/questions/1782029/tv-show-suggestion-algorithm-and-sql/1782073#1782073Comment by jammus on TV Show Suggestion Algorithm and SQLjammus2009-11-23T11:19:15Z2009-11-23T11:19:15ZI've made a couple of changes. Try it now.http://stackoverflow.com/questions/1782029/tv-show-suggestion-algorithm-and-sql/1782073#1782073Comment by jammus on TV Show Suggestion Algorithm and SQLjammus2009-11-23T10:48:43Z2009-11-23T10:48:43ZWhoops. Had a few table/column names wrong. Should be fine now.http://stackoverflow.com/questions/1782029/tv-show-suggestion-algorithm-and-sql/1782073#1782073Comment by jammus on TV Show Suggestion Algorithm and SQLjammus2009-11-23T10:45:35Z2009-11-23T10:45:35ZYou're still selecting from the tvshow table rather than the view. Have updated my answer a little.http://stackoverflow.com/questions/1782029/tv-show-suggestion-algorithm-and-sql/1782073#1782073Comment by jammus on TV Show Suggestion Algorithm and SQLjammus2009-11-23T10:08:37Z2009-11-23T10:08:37ZI think this is because you're selecting from the tvshows table rather than a showhitdetails view. (I've updated my answer to show this)http://stackoverflow.com/questions/1722593/browser-friendly-way-to-simulate-anchor-click-with-jqueryComment by jammus on Browser-friendly way to simulate anchor click with jQuery?jammus2009-11-12T15:03:05Z2009-11-12T15:03:05Zhow about $('a').click(function(){location.href = this.href}).click(); ?
It's a little silly but it works.http://stackoverflow.com/questions/1722593/browser-friendly-way-to-simulate-anchor-click-with-jqueryComment by jammus on Browser-friendly way to simulate anchor click with jQuery?jammus2009-11-12T14:48:28Z2009-11-12T14:48:28ZWhat is it you're trying to achieve? Is it to get a browser to follow the link or trigger another event?http://stackoverflow.com/questions/1329527/creating-multi-level-scrollable-menus-using-jquery-and-the-jdmenu-plugin/1351241#1351241Comment by jammus on Creating multi-level, scrollable menus using jQuery and the jdMenu pluginjammus2009-10-26T14:43:06Z2009-10-26T14:43:06ZI really like this and will making use of it elsewhere. Cheers.http://stackoverflow.com/questions/273410/how-many-dimensions-in-my-array-or-get-the-last-one/273454#273454Comment by jammus on How many dimensions in my array or get the last one jammus2009-08-27T16:04:26Z2009-08-27T16:04:26ZIf MySingleDimensionalArray is a single dimensional array then your first line will error.http://stackoverflow.com/questions/1341435/jquery-validation-using-validation-on-click-not-on-submit/1341499#1341499Comment by jammus on jQuery Validation - Using validation on click, not on submitjammus2009-08-27T15:37:18Z2009-08-27T15:37:18Z.validate() is used to set up the form validation and .valid() is used to test if the form is valid. So no, .validate() is best called at initialization.http://stackoverflow.com/questions/1329527/creating-multi-level-scrollable-menus-using-jquery-and-the-jdmenu-plugin/1329579#1329579Comment by jammus on Creating multi-level, scrollable menus using jQuery and the jdMenu pluginjammus2009-08-25T17:46:21Z2009-08-25T17:46:21ZGreat idea. We actually make use of a contract autocomplete elsewhere which searches in the way you mention so this could be implemented fairly easily. This autocomplete also provides a look up button which opens a modal window where the user can page through results, do more detailed searches and of course filter by client by way of a massive long dropdown which goes of the screen. Of course we could replace this with ohmygodithinkiverippedaholeinspaceandtime.http://stackoverflow.com/questions/1329527/creating-multi-level-scrollable-menus-using-jquery-and-the-jdmenu-plugin/1329579#1329579Comment by jammus on Creating multi-level, scrollable menus using jQuery and the jdMenu pluginjammus2009-08-25T17:13:33Z2009-08-25T17:13:33ZPS - thanks for your quick response.http://stackoverflow.com/questions/1329527/creating-multi-level-scrollable-menus-using-jquery-and-the-jdmenu-plugin/1329579#1329579Comment by jammus on Creating multi-level, scrollable menus using jQuery and the jdMenu pluginjammus2009-08-25T17:13:01Z2009-08-25T17:13:01ZYeah, I'm certainly open to alternative approaches. In the example above the menu it used to filter a list of products by contract. As there are hundreds of contracts in the system the menu has been separated out as follows.
Clients -> Letters of alphabet [A-Z] -> Clients beginning with selected letter -> Contracts belonging to selected client.
Where we're having the problem is that we've been asked to miss out the step where we separate clients by first letter. When this happens the list of clients runs off the screen or (if the fix is applied) the user is unable to open the contract menu.http://stackoverflow.com/questions/1300773/what-belongs-in-a-repository-and-what-doesntComment by jammus on What Belongs in a Repository and What Doesn't?jammus2009-08-19T15:52:23Z2009-08-19T15:52:23ZI really like this question. It's so easy for an extra little method to slip in here and there.http://stackoverflow.com/questions/1299213/adding-a-link-to-text-attribute-with-jquery/1299225#1299225Comment by jammus on adding a link to text attribute with jqueryjammus2009-08-19T11:13:56Z2009-08-19T11:13:56ZWon't that make the whole of me clickable?