User balexandre - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T21:41:30Zhttp://stackoverflow.com/feeds/user/28004http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1437258/pass-a-value-and-reload-user-control-from-javascript2Pass a value and reload User Control from Javascriptbalexandre2009-09-17T07:35:12Z2009-12-17T14:37:57Z
<p>Hi guys,</p>
<p>I have a User control (because I use the same in other page, so I thought I should reuse code and not double my work), but in this page I show a list of companies and each one has a <strong>company number</strong>, I need to pass this company number to that User Control and it has to reload using that passed company number.</p>
<p>How can I accomplish this?</p>
<p>what I have so far:</p>
<p><img src="http://www.balexandre.com/temp/2009-09-17%5F0917.png" alt="alt text" /></p>
<p>the <strong>Show company structure</strong> link is made of</p>
<pre><code><a href="javascript:showStruct('112:201334607','5564967221');"
class="showStructLink">Show company structure</a>
</code></pre>
<p>the <strong>showStruct</strong> method is written like</p>
<pre><code> function showStruct(pid, cnr) {
if (_showStrut == 0)
return;
// fancy stuff to be more apealing visually
$("#tdSearch").removeClass("tabTitleUp01").addClass("tabTitleDownUp01");
$("#tdStruct").removeClass("tabTitleDownUp02").addClass("tabTitleUp02");
$("#srtr1").hide();
$("#srtr2").hide();
$("#sttr1").show();
// enable Search Results tab to be clicked in order to get back
$("#tdSearch")
.addClass("pointer")
.bind("click", function() { hideStructure(); });
// pass the company number and reload wcCompanyStruture web user control
// __doPostBack('RefreshWebUserControl', cnr);
}
</code></pre>
<p>I can make a simple aspx page with the control inside and from jQuery invoke $.get() to run and populate the control correctly, but I really want to learn how to do this properly, using the ASP.NET AJAX Method to send a number and call RefreshData on it</p>
<p>using code-behind it is easy to refresh the user control, just invoking</p>
<pre><code>wcCompanyStruture.RefreshData("companyNumberHere");
</code></pre>
<p>what do I need to do in my User Control side and well in the showStruct method to create this behavior?</p>
<p>All help is appreciated, Thank you.</p>
http://stackoverflow.com/questions/1482728/suggest-a-good-book-on-asp-net-projects/1483184#14831840Answer by balexandre for Suggest a good book on ASP.NET projectsbalexandre2009-09-27T09:27:47Z2009-12-07T17:50:12Z<p>Because you specify Projects and Problems, I would strongly suggest a Wrox title:</p>
<blockquote>
<p><a href="http://rads.stackoverflow.com/amzn/click/0470396865" rel="nofollow">ASP.NET 3.5 Enterprise Application Development with Visual Studio 2008: Problem Design Solution</a></p>
</blockquote>
<p><img src="http://www.balexandre.com/temp/2009-09-27%5F1123.png" alt="alt text"></p>
<p>It is fantastic!</p>
<p>It contains an enterprise solution with implementation of Design Patterns, Business Logic Layer, Data Access Layer, User Interface as well as telling about some common mistakes and their solutions.</p>
<p>Go to a library and grab a copy and start reading. If you like, buy it! :)</p>
http://stackoverflow.com/questions/1356993/asmx-in-delphi-studio0ASMX in Delphi Studiobalexandre2009-08-31T11:24:35Z2009-11-28T19:11:28Z
<p>Hi guys,</p>
<p>I recently bought Bob's book <a href="http://www.lulu.com/content/paperback-book/delphi-xml-soap-and-web-services-development/5551656" rel="nofollow">Delphi XML, SOAP & Web Services</a></p>
<p>in page 85 of this book the (Delphi 2006 8used) comes with several New Item Categories such as</p>
<ul>
<li>C# Projects</li>
<li>C++ Builder projects</li>
<li>Delphi for .NET Projects</li>
</ul>
<p>something that you don't have in a fresh installation</p>
<p>I need this <strong>ASP.NET Web Service Application</strong> that is inside Delphi for .NET Projects, but I can't find how do we get this plugin(?) to install in Delphi so we get all this new projects categories.</p>
<p>Does any of you use this and can tell me what is the <strong>Plugin</strong>?</p>
<p><em>image from the book showing what we are after</em>
<img src="http://www.balexandre.com/temp/2009-08-31%5F1322%5Fasmx%5Fin%5Fdelphi.png" alt="alt text" /></p>
<p>We tried Delphi prism but it is not that as Prism works in Visual Studio it self and not in Delphi Studio.</p>
<p>We also tried to send an email to <strong><a href="http://www.drbob42.com/" rel="nofollow">Bob Swart</a></strong> but no answer from him :(</p>
<p>We thought and we own <a href="http://www.drbob42.com/d4dn/index.htm" rel="nofollow">RAD Studio 2007 Professional</a>, and that comes with that <strong>Delphi for .NET Projects</strong> but not the ASP.NET Web Services, so, we are thinking that it only be available for the Enterprise or Architect versions, but I can't find any information regarding where is this (bundle details and what's inside what) :(</p>
<p>Thanks</p>
http://stackoverflow.com/questions/502896/visual-studio-setup-deployment-adding-pre-requisits1Visual Studio Setup & Deployment: Adding Pre Requisitsbalexandre2009-02-02T11:27:24Z2009-11-25T05:11:51Z
<p>Hi guys,</p>
<p>How can I add into Setup & Deployment project that I want to the client has more components, like:</p>
<pre><code>Microsoft Chart Controls
Microsoft SQL 2008 Express Edition (not 2005)
</code></pre>
<p>etc...</p>
<p><img src="http://img55.imageshack.us/img55/2586/200902021225eu9.png" alt="alt text" /></p>
<p>This options are not in VS 2008, and in the window (image above) it only has a link to "<a href="http://msdn.microsoft.com/en-us/vstudio/bb898654.aspx" rel="nofollow">Check Microsoft Update for more Redistributable components</a>" but it goes to a page with 2 "bootstrapper packages" (I don't even know what's this)</p>
<p>any ideas on how to add this to the project instead asking the users to install this manually?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1778377/visual-studio-weirdness0Visual Studio weirdnessbalexandre2009-11-22T10:33:35Z2009-11-22T12:48:24Z
<p>Hi guys,</p>
<p>I have no one else to count unless this fantastic community, I know this is a non-programmer question but I can't figure it out why this is happening.</p>
<p>To a client I developed, <strong>using <a href="http://960.GS" rel="nofollow">960.GS</a></strong> a layout with a simple login user page / choose product / register products using .NET (ASP.NET 3.5) and all was ok, they agreed and I started ...</p>
<p>I then imported the <strong>HTML files</strong> I did and started to replace input with asp:TextBox's and the button into an asp:Button, really simple/basic stuff, but soon I click "View in Browser" I got my code <strong>all scrambled</strong>!</p>
<p>even if I see a XHTML 1.1 Strict Validated code, and CSS 2.1 Validate code </p>
<p>to try to get what's wrong, I put the ASPX file aside and open only the HTML page.</p>
<p>results are <strong>very different</strong>:</p>
<p>Opening directly in Firefox, with no web server:</p>
<p><img src="http://www.balexandre.com/temp/2009-11-22%5F1116.png" alt="alt text"></p>
<p>if I run the same page (exactly the same code) [<strong>HTML page</strong>, no ASP.NET page] through <strong>Cassini (Visual Studio Web Server)</strong> it shows .. ohh well...</p>
<p><img src="http://www.balexandre.com/temp/2009-11-22%5F1117.png" alt="alt text"></p>
<p>as well if I run that html page from <strong>IIS 7.5</strong></p>
<p><img src="http://www.balexandre.com/temp/2009-11-22%5F1129.png" alt="alt text"></p>
<blockquote>
<p><strong>all 3 files above are the same page</strong>, being run through 2 different servers Cassini, IIS and the normal HTML render from Firefox.</p>
</blockquote>
<p>using Firebug, all css loads well </p>
<p>screen cast: <a href="http://bit.ly/7ZBkuh" rel="nofollow">http://bit.ly/7ZBkuh</a> (20 sec)</p>
<p>Does anyone have any idea for this behavior?</p>
<blockquote>
<p>All help will be greatly appreciated, Thank you.</p>
</blockquote>
http://stackoverflow.com/questions/1721633/how-to-make-localization/1722122#17221220Answer by balexandre for HOW TO MAKE localization?balexandre2009-11-12T13:18:29Z2009-11-12T13:18:29Z<p>Have you ever saw the <a href="http://www.google.dk/search?ie=UTF-8&q=site%3Aasp.net/learn/videos+localization" rel="nofollow">Localization video tutorials</a> from ASP.NET website?</p>
<blockquote>
<p><a href="http://www.asp.net/learn/videos/video-40.aspx" rel="nofollow"><strong>How Do I</strong>: Create a Multi-Lingual Site with Localization?</a></p>
</blockquote>
<p>and</p>
<blockquote>
<p><a href="http://www.asp.net/learn/videos/video-179.aspx" rel="nofollow"><strong>How Do I:</strong> Localize an ASP.NET AJAX Application?</a></p>
</blockquote>
<p>They are great to get you started...</p>
http://stackoverflow.com/questions/1721954/link-in-dreamweaver-using-php/1721989#17219891Answer by balexandre for link in dreamweaver using phpbalexandre2009-11-12T12:52:58Z2009-11-12T12:52:58Z<p>PHP code has nothing to do with Flash...</p>
<p>Flash files are embed in HTML code, and if you Google for <strong>embed flash files</strong> I'm sure you will find plenty information regarding what you want.</p>
<p>Best way though is using <strong><a href="http://code.google.com/p/swfobject/" rel="nofollow">SWFObject</a></strong></p>
<p>see this <a href="http://www.adobe.com/devnet/flashplayer/articles/swfobject.html" rel="nofollow">Adobe Tutorial</a> or search for <strong>SWFObject tutorial</strong> over the net</p>
http://stackoverflow.com/questions/841206/calendar-control-for-cocoa-touch0Calendar control for cocoa touchbalexandre2009-05-08T18:36:05Z2009-11-12T01:33:14Z
<p>I'm want to create a CRM app for me just for fun and to learn more about Cocoa, because CRM application evolve based on a Calendar, I wonder where can I get that cool Calendar control that iCal has in the iPhone.</p>
<p>I can't see it in my Library and I'm using SDK 3.0 beta 5.</p>
<p>And by the way, where can I get a free/paid controls collection like there are so many for the .NET world?</p>
<p><img src="http://img520.imageshack.us/img520/8341/img0044.png" alt="alt text" /></p>
http://stackoverflow.com/questions/1573853/how-to-compare-flags-in-c-part-23How to Compare Flags in C#? (part 2)balexandre2009-10-15T17:22:44Z2009-10-28T19:34:41Z
<p>Bit flags are a little difficult to understand :)</p>
<p>I know about <a href="http://stackoverflow.com/questions/40211/how-to-compare-flags-in-c">this</a> and <a href="http://stackoverflow.com/questions/1086618/comparing-enum-flags-in-c">this</a> questions and I do understand the answers and I even followed this <a href="http://weblogs.asp.net/alessandro/archive/2007/10/02/bitwise-operators-in-c-or-xor-and-amp-amp-not.aspx" rel="nofollow">article</a> from a good friend of mine.</p>
<p>But I still cant figure it out when I need to "evolute" more than the standard...</p>
<p>What I'm trying to do is this:</p>
<pre><code> if (HttpContext.Current.Session["DebugSessionText"] != null)
{
showType = parDebug.Write2LogType.WARN |
parDebug.Write2LogType.ERROR |
parDebug.Write2LogType.INFO;
if (!chkInfo.Checked)
showType &= ~parDebug.Write2LogType.INFO; // remove INFOs
if (!chkError.Checked)
showType &= ~parDebug.Write2LogType.ERROR; // remove ERRORs
List<myDebugRow> list =
(List<myDebugRow>)HttpContext.Current.Session["DebugSessionText"];
gv.DataSource = list.FindAll(x => x.Type == showType));
}
gv.DataBind();
</code></pre>
<p>I do need to filter a List object, so I can get just what the user wants (show only INFO errors, exception ERRORs but WARNing errrors will always be showed) ... </p>
<p>Is there a direct way to do this or I need to filter it manually without using the LAMBDA expression?</p>
<p>Thank you for all the help.</p>
http://stackoverflow.com/questions/1476294/adding-sql-server-express-edition-sp3-as-project-requirement0Adding SQL Server Express Edition SP3 as Project Requirementbalexandre2009-09-25T09:15:48Z2009-10-25T17:12:41Z
<p>Hi guys,</p>
<p>I'm deploying my Web project and in the requirements I mention that I need SQL Express Edition SP2 (x86) as you can see by the picture below</p>
<p><img src="http://www.balexandre.com/temp/2009-09-25%5F1107.png" alt="alt text" /></p>
<p>Problem is when the client has already Microsoft SQL Server 2005 Express Edition SP3 (this on a <strong>64 bit</strong> machine)</p>
<p>when we try to install I get this error</p>
<p><img src="http://www.balexandre.com/temp/2009-09-25%5F1111.png" alt="alt text" /></p>
<p>Questions:</p>
<ul>
<li>even thought I tell my Setup that client machine has to have SQL 2005 SP2 (x86), shouldn't it see that it already have a newer version, even thought it's 64bit?</li>
<li>How can I <strong>add SQL Express edition SP3</strong> to the list of prerequisites?</li>
</ul>
http://stackoverflow.com/questions/1606127/send-sms-at-a-same-point-of-time/1606184#16061844Answer by balexandre for Send SMS at a same point of timebalexandre2009-10-22T09:56:34Z2009-10-22T12:33:28Z<p>That concept do not need Multi Threading ...</p>
<p>That concept is more of a Task Manager / Cron Job </p>
<ol>
<li>Create an ASPX Script that sees the time and executes the method you need</li>
<li>Set up Task Manager to run this script every xx minutes</li>
<li>Create a method, that fetches the list of persons and send the SMS through an SMS API, and call it, for ex. SendSMSFromList( List usersList, string message ) {}</li>
<li>Now set everything up and you will run this anytime you need (just set it in the ASPX Script)</li>
</ol>
<p>please, fell free to tell me, if you need any code for this.</p>
<p><hr /></p>
<p><strong>edited</strong> for having all steps
<hr /></p>
<p>If you have a hosted solution, in your hosting control panel you have something as <strong>Task Schedule</strong> that you can set up to run your script page every n minutes, if so please by pass the next steps. If, by other hand, you are running your own server (IIS) then do this first.</p>
<ul>
<li>Install cUrl for windows from <a href="http://curl.haxx.se/latest.cgi?curl=win32-nossl" rel="nofollow">this location</a> and add <strong>curl.exe</strong> to C:\WINDOWS</li>
<li>Open Task Manager (Control Panel > Administrative Tools > Task Scheduler on win7)</li>
<li>Create a new task <a href="http://www.balexandre.com/temp/2009-10-22%5F1343.png" rel="nofollow">like this</a></li>
<li>Run the command</li>
</ul>
<blockquote>
<p>curl <a href="http://localhost/yourApp/taskManager.aspx" rel="nofollow">http://localhost/yourApp/taskManager.aspx</a></p>
</blockquote>
<p>with this you just configured your system to run a file, just like if you execute that link in a browser, that will run every 15 minutes.</p>
<p><strong>Now</strong> we need to create that taskManager.aspx file</p>
<pre><code>public partial class taskManager : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
DateTime dt = DateTime.Now;
// Run after midnight
if (dt.Hour == 0 && dt.Minute <= 15)
{
Write2Log("Schedule Job Started", LogType.INFO);
SendSMSFromList(
GetUsersList(),
GetSMSMessage());
Write2Log("Schedule Job Finished", LogType.INFO);
}
}
private string GetSMSMessage()
{
// Fetch the text from DB...
return "This is the message content that I will send as SMS";
}
private List<string> GetUsersList()
{
// fetch the list form DB...
return new List<string>();
}
private void SendSMSFromList(List<string> usersList, string message)
{
// send SMS's
foreach (string phoneNr in usersList)
{
// send message
mySMSAPI.Send(phoneNr, message);
}
}
private void Write2Log(string text, LogType type)
{
// Log to a file what's going on...
try
{
string filename = HttpContext.Current.Server.MapPath("") + "\\status.log";
using (StreamWriter sw = new StreamWriter(filename, true)) // open to append
{
// example: 2008-12-17 13:53:10,462 INFO - Schedule Job Finished
string write = String.Format("{0} {1} - {2}",
DateTime.Now,
type.ToString(),
text);
sw.WriteLine(write);
}
}
catch (Exception)
{ }
}
private enum LogType
{ INFO, WARNING, ERROR }
}
</code></pre>
<p>Done...</p>
<p>I made everything in just one file for the sake of the example, you should divide things ... but what I was after was to show you the principle of it.</p>
http://stackoverflow.com/questions/1602186/how-to-update-asp-net-site-dll-without-stopping-site/1602199#16021994Answer by balexandre for How to update ASP.Net site dll without stopping sitebalexandre2009-10-21T17:06:13Z2009-10-21T17:11:22Z<p>even if you don't stop, any change to the web.config file, BIN folder, App_Data or App_Code will force the .NET compiler to perform ...</p>
<p>and you will loose any Session variables in memory.</p>
<p>What I do is to use <strong>Session State</strong> in <strong>SQL Mode</strong> and if your system is set up like this, user will remain in the site (after a longer exposition to a page reload)</p>
<p>.NET will still invoke the compiler in order to compile the new set of instructions but soon it is done, all sessions will be read from SQL Server and because they are still there (and not lost with a memory refresh) users will remain in the website with current credentials.</p>
<p>it is a little bit slower than In-Memory Session State, but much more reliable, specially with Shared hosting :) this is the way to increse/decrese the minutes in your session, as Shared hosting do not allow it to change even if you do</p>
<pre><code>Session.Timeout = 5;
</code></pre>
<p>their machine configuration will override everything you do, with SQL Session State, you will be able to set your time as this is all made by SQL Server.</p>
<p>Fell free to read <a href="http://idunno.org/articles/277.aspx" rel="nofollow">this article</a> to know how everything is done.</p>
<p>Hope it helps.</p>
http://stackoverflow.com/questions/1600065/how-to-read-attribute-value-from-xmlnode-in-c/1600088#16000881Answer by balexandre for How to read attribute value from XmlNode in C#?balexandre2009-10-21T10:54:56Z2009-10-21T11:15:13Z<p>you can loop through all attributes like you do with nodes</p>
<pre><code>foreach (XmlNode item in node.ChildNodes)
{
// node stuff...
foreach (XmlAttribute att in item.Attributes)
{
// attribute stuff
}
}
</code></pre>
http://stackoverflow.com/questions/1599287/create-read-and-erase-cookies-with-jquery/1599291#15992910Answer by balexandre for create, read, and erase cookies with jquerybalexandre2009-10-21T07:37:38Z2009-10-21T07:37:38Z<p>As I know, there is no direct support, but you can use plain-ol' javascript for that:</p>
<pre><code> // Cookies
function createCookie(name, value, days) {
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
var expires = "; expires=" + date.toGMTString();
}
else var expires = "";
var fixedName = '<%= Request["formName"] %>';
name = fixedName + name;
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1, c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name, "", -1);
}
</code></pre>
http://stackoverflow.com/questions/1588360/loading-assemblies1Loading Assembliesbalexandre2009-10-19T12:18:36Z2009-10-19T14:51:57Z
<p>Hi guys,</p>
<p>There are plenty of discussing that shows how to load assemblies from BIN and from GAC... my question is more general and I would love to know how assembly loading work.</p>
<p>As for example</p>
<p>in the BIN folder we can have </p>
<pre><code>A.dll
A.dll.config
</code></pre>
<p>A.dll.config file can look like:</p>
<pre><code><?xml version="1.0"?>
<configuration>
<startup>
<supportedRuntime version="v2.0.50727"/>
</startup>
</configuration>
</code></pre>
<p>to help us setting the correct assembly reference.</p>
<p>I was wondering how can I create a A.dll that needs B.dll but without specify any version so if would always take the B.dll that is in the BIN Folder.</p>
<p>My question is regarding an update of the SDK and all my code still points to the old SDK version, I wanted to have my assembly look for the top most of all versions of the resource, BIN or GAC and use that one...</p>
<p>How can I say that in Visual Studio? I can only Add Reference to a physical file (version) :-(</p>
http://stackoverflow.com/questions/461842/pre-compile-website-in-setup-deployment3pre compile website in Setup & Deploymentbalexandre2009-01-20T15:46:16Z2009-10-16T11:16:49Z
<p>Hi guys,</p>
<p>Every time I use Setup & Deployment to create a new Web Setup, and run it (after edit all the nice things in the properties), the output is always a copy of the Web Site project...</p>
<p>How can I output a PreCompile version of the WebSite project?</p>
<p>What I did was, publish the Web Site (so I get the precompiled version), add this new precompiled web site as an existing Web site to my solution and add it to the content output of the Setup...</p>
<p>well, the idea was good but I get an error saying:</p>
<pre><code>"This application is already precompiled."
</code></pre>
<p><img src="http://www.balexandre.com/temp/stackoverflow%5Fprecompiledquestion.png" alt="alt text" /></p>
<p>:-(</p>
<p>Bottom line is that I just want a Setup file that gives me the precompiled version of my Web project, how can I accomplish this?</p>
http://stackoverflow.com/questions/1570547/you-are-not-so-tough-without-your-car-fastest-lookup-list/1570847#15708470Answer by balexandre for You are not so tough without your car. Fastest lookup list.balexandre2009-10-15T07:43:05Z2009-10-15T07:43:05Z<p>I had this problem several years ago when programming C, that we need to find a barcode (numeric) quickly in about 10 thousand rows (in that time, using a file as the Database - as it was a hand device)</p>
<p>I created my own search that instead of iterate one by one would start always in the middle...</p>
<p>searching for 4050 in 10000 item stack</p>
<blockquote>
<p>start on 5000 ( 10 000 / 2 )<br>
now, is the number higher or lower ... lower</p>
<p>start on 2500 ( 5000 / 2 )<br>
now, is the number higher or lower ... higher</p>
<p>start on 3750 ( 2500 + 2500 / 2 )<br>
now, is the number higher or lower ... higher</p>
<p>start on 4375 ( 3750 + 1250 / 2 )<br>
now, is the number higher or lower ... lower</p>
<p>start on 4063 ( 4375 - 625 / 2 )<br>
now, is the number higher or lower ... lower</p>
<p>start on 3907 ( 4063 - 312 / 2 )<br>
now, is the number higher or lower ... higher</p>
<p>start on 3907 ( 3907 + 156 / 2 )<br>
now, is the number higher or lower ... higher</p>
<p>start on 3946 ( 3907 + 78 / 2 )<br>
now, is the number higher or lower ... higher</p>
</blockquote>
<p>...</p>
<p>until you get the value... you will need to search about 14 times instead 4050 iterations</p>
<p>about the letters ... they all represent a numeric number as well...</p>
<p>Hope it helps</p>
http://stackoverflow.com/questions/1564560/help-with-a-sql-query/1564607#15646070Answer by balexandre for Help with a SQL Querybalexandre2009-10-14T06:39:14Z2009-10-14T06:56:00Z<p>something like this? </p>
<pre><code>SELECT
B.Name,
A.Charge,
DATEPART(day, A.DateAdded) as day
FROM
TableA A, Table B
WHERE
B.ID = A.ID AND
A.DateAdded BETWEEN DATEADD(day, -1, GETDATE()) AND GETDATE()
GROUP BY
B.Name,
A.Charge,
A.DateAdded
</code></pre>
http://stackoverflow.com/questions/1562588/bundle-product-shows-price-as-00bundle product shows price as 0balexandre2009-10-13T19:59:49Z2009-10-13T22:02:12Z
<p>Hi guys,</p>
<p>I've been reading a lot about this problem but I get nothing that suggests a way out.
I am working with version <strong>1.3.2.4</strong> and after creating a <strong>bundle product</strong>, Magento displays it as price as zero, but gives the "current composition" as the correct value.</p>
<p><img src="http://www.balexandre.com/temp/2009-10-13%5F2158.png" alt="alt text" title="Product price is 0" /></p>
<p>I already tried to refresh the cache, rebuild the catalog index, and nothing works...
Then I went deep and navigated into the <strong>price.phtml</strong> template under</p>
<blockquote>
<p>template/bundle/catalog/product/view/</p>
</blockquote>
<p>and tried to invoke the same method that is showing correctly the value, bu that as well, return zero.</p>
<p>I did notice that Magento has this javascript method</p>
<pre><code>bundle.reloadPrice();
</code></pre>
<p>right after and if invoked I do get the correct price... I can try, using jQuery (or Prototype as Magento uses by default) change the value, but I was trying to this right...</p>
<p>Any other ideas?</p>
http://stackoverflow.com/questions/1562588/bundle-product-shows-price-as-0/1563064#15630640Answer by balexandre for bundle product shows price as 0balexandre2009-10-13T21:40:22Z2009-10-13T22:02:12Z<p>for the product page I'm using this as a work around:</p>
<p>executing this jQuery code:</p>
<pre><code>// hide "Price as configured" text
jQuery(".price-as-configured span:first").hide();
// hide the 0,00 price
jQuery(".price-box-bundle").hide();
// hide the 2nd price (not in image)
jQuery(".product-options-bottom .price-box").hide();
</code></pre>
<p>will pass <strong>this</strong>:</p>
<p><img src="http://www.balexandre.com/temp/2009-10-13%5F2338.png" alt="alt text" /></p>
<p>into <strong>this</strong>:</p>
<p><img src="http://www.balexandre.com/temp/2009-10-13%5F2339.png" alt="alt text" /></p>
<p><hr /></p>
<p>In the product grid list I'm using this code to hide the price/button and add to wish list links</p>
<pre><code>// GRID
jQuery("#products-grid-table .price-box").hide();
jQuery("#products-grid-table .button").hide();
jQuery("#products-grid-table .add-to-links").hide();
// LIST
jQuery("#products-list .price-box").hide();
jQuery("#products-list .button").hide();
jQuery("#products-list .add-to-links").hide();
</code></pre>
<p>and it will pass <strong>this</strong></p>
<p><img src="http://www.balexandre.com/temp/2009-10-14%5F0005.png" alt="alt text" /></p>
<p>into <strong>this</strong></p>
<p><img src="http://www.balexandre.com/temp/2009-10-14%5F0006.png" alt="alt text" /></p>
<p>I hope it helps someone ...</p>
http://stackoverflow.com/questions/1541205/create-pdf-from-merge-document-via-asp-c/1541268#15412681Answer by balexandre for Create PDF from Merge document via ASP C#balexandre2009-10-09T00:27:33Z2009-10-09T00:32:46Z<p>firstly ... stop thinking "doc" as standard cause .. it is not.</p>
<p>PDF is much more standard than doc and using any online viewer it is easy to provide access to it's content</p>
<p>now... </p>
<p>for manipulating PDF files fore free u have a very nice C# Library called <a href="http://csharp-source.net/open-source/pdf-libraries/itextsharp" rel="nofollow">iTextSharp</a></p>
http://stackoverflow.com/questions/1540991/when-i-do-jquery-html-this-updates-the-divs-innerhtml/1541008#15410087Answer by balexandre for When I do JQuery ".html"..this updates the div's innerHTML.balexandre2009-10-08T23:05:42Z2009-10-08T23:05:42Z<p>if to append AFTER</p>
<blockquote>
<p><a href="http://docs.jquery.com/Manipulation/append" rel="nofollow">append</a></p>
<p><a href="http://docs.jquery.com/Manipulation/appendTo" rel="nofollow">appendTo</a></p>
</blockquote>
<p>if to append BEFORE</p>
<blockquote>
<p><a href="http://docs.jquery.com/Manipulation/prepend" rel="nofollow">prepend</a></p>
<p><a href="http://docs.jquery.com/Manipulation/prependTo" rel="nofollow">prependTo</a></p>
</blockquote>
http://stackoverflow.com/questions/1509004/accessing-childcontrol-values-of-a-gridview0Accessing ChildControl Values of a GridViewbalexandre2009-10-02T11:34:32Z2009-10-02T12:28:41Z
<p>Hi guys,</p>
<p>I tried to search for this question and plenty results come up, but not exactly what I'm getting, so here it goes:</p>
<p>I have a simple GridView control and I want to access the value of the child controls once submited</p>
<p>I'm doing this:</p>
<pre><code><asp:GridView ID="gvQuery" runat="server" GridLines="None" CellPadding="5" CellSpacing="5"
OnRowDataBound="gvQuery_RowDataBound" ShowHeader="False" AutoGenerateColumns="False">
<Columns>
<asp:TemplateField ItemStyle-Width="20px">
<ItemTemplate>
<asp:CheckBox ID="chkActive" runat="server" />
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="Description" />
<asp:TemplateField>
<ItemTemplate>
<asp:DropDownList ID="ddlCondition" runat="server" />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<ItemTemplate>
<asp:TextBox ID="txtField1" runat="server" />
<span class="text2">and&nbsp;<asp:TextBox ID="txtField2" runat="server" /></span>
<asp:HiddenField ID="hfFieldName" runat="server" Value='<%# Eval("InternalName") %>' />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
<asp:Button runat="server" ID="btnSearch" Text=" Search "
onclick="btnSearch_Click" />
</code></pre>
<p>and then, in the <strong>btnSearch_Click</strong> event I have the normal loop</p>
<pre><code>foreach (GridViewRow gvr in gvQuery.Rows)
{
if (gvr.RowType == DataControlRowType.DataRow)
{
CheckBox ch = gvr.FindControl("chkActive") as CheckBox;
DropDownList dd = gvr.FindControl("ddlCondition") as DropDownList;
TextBox t1 = gvr.FindControl("txtField1") as TextBox;
TextBox t2 = gvr.FindControl("txtField2") as TextBox;
HiddenField hf = gvr.FindControl("hfFieldName") as HiddenField;
if (ch.Checked)
{
SearchResultField srf = new SearchResultField();
Field field = fields.Find(x => x.Name == hf.Value);
srf.Name = field.Name;
srf.Operator = dd.SelectedValue;
srf.Owner = field.WhereOwner;
srf.Param1 = t1.Text;
srf.Param2 = t2.Text;
srf.Type = field.FieldType;
sr.Fields.Add(srf);
}
}
}
</code></pre>
<p><strong>Problem</strong> is that the <strong>CheckBox</strong> is always Checked = false even if I check it!</p>
<p>What do I need to do, to get the post values? it seams that after clicking I completely loose anything done in the grid, I'm just getting empty controls.</p>
<p>in my aspx page direct I have:</p>
<pre><code><%@ Page
Title=""
Language="C#"
MasterPageFile="~/3Rows.master"
AutoEventWireup="true"
ValidateRequest="false"
CodeFile="Default.aspx.cs"
Inherits="_Default" %>
</code></pre>
<p>I do have projects with <strong>this behavior working</strong> but I can't seam to understand why do I have this one here in this simple page....</p>
<p>Anyone have a clue?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1509004/accessing-childcontrol-values-of-a-gridview/1509228#15092281Answer by balexandre for Accessing ChildControl Values of a GridViewbalexandre2009-10-02T12:28:41Z2009-10-02T12:28:41Z<p>child mistake ...</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
PopulateData();
}
</code></pre>
<p>instead</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
PopulateData();
}
</code></pre>
http://stackoverflow.com/questions/740803/why-cant-gridview-extract-child-controls-values-directly/1509214#15092140Answer by balexandre for Why can’t GridView extract child control’s values directly?balexandre2009-10-02T12:25:35Z2009-10-02T12:25:35Z<p>What it says there is only this</p>
<pre><code>myGridView.DataSource = new string { "1", "2", "3", "4", "5" };
</code></pre>
<p>will never work, but this:</p>
<pre><code>myGridView.DataSource = new string { "1", "2", "3", "4", "5" };
myGridView.DataBind();
</code></pre>
<p>will</p>
http://stackoverflow.com/questions/1498947/what-can-cause-applicationerror-not-to-be-invoked0What can cause Application_Error not to be invoked?balexandre2009-09-30T15:38:36Z2009-09-30T16:05:47Z
<p>Hi guys,</p>
<p>For the last 2 weeks I have a case that I can't figure it out, maybe you guys already passed through the same problem or ear/read about it and can help me.</p>
<p>I have an ASP.NET Project that I run on my machine and other machines fine, every time I try to temper the QueryString I get an error that is been thrown by the System.Exception</p>
<p>problem is, in this particular machine (witch is in Holland) the Application_Error never catches the Exception, it saves the Exception message to the log (as in my application should be done) but it does not "break" the web application... it just continues!</p>
<p>How and what can make this possible?</p>
<p><hr /></p>
<p>for an example sake, this is my <strong>webpage</strong> (HttpCache canot be invoked like this, but is only to point that I'm using the Web.HttpCache object)</p>
<pre><code>if( Request.QueryString["user"] != HttpCache["MYAPP-user"] ) {
myApp.DebugWrite("User was tempered.");
throw System.Exception("User was tempered.");
}
</code></pre>
<p>and in <strong>global.asax</strong> I have</p>
<pre><code>...
void Application_Error(object sender, EventArgs e)
{
// Code that runs when an unhandled error occurs
if (Server.GetLastError() != null)
{
Exception objErr = Server.GetLastError().GetBaseException();
String url = Request.Url.ToString();
String msg = objErr.Message;
String trc = objErr.StackTrace.ToString();
Response.Clear();
StringBuilder html = new StringBuilder();
// fill up html with html code in order to present a nice message
Response.Write(html.ToString());
Server.ClearError();
Response.Flush();
Response.End();
}
}
...
</code></pre>
<p><hr /></p>
<p>in my test machines, I always get the html with the error message, as well the message in the log... in this particular machine, I only see the error in the log, but the <strong>application continue</strong>!!!</p>
<p><strong>web.config</strong> is exactly the same as in all machines and this web application runs on .NET 2.0</p>
<p>What can it be?</p>
http://stackoverflow.com/questions/1496938/asp-net-what-does-the-starting-a-mean/1497045#14970453Answer by balexandre for ASP.NET : What does the '#' starting a <% %> mean ? balexandre2009-09-30T09:36:02Z2009-09-30T09:36:02Z<p>just to add...</p>
<p>you also have:</p>
<blockquote>
<p>$</p>
</blockquote>
<p>let's you Bind a Resource, like: </p>
<pre><code><%$ Resources:Menu, oktext %>
</code></pre>
<blockquote>
<p>=</p>
</blockquote>
<p>the most known binder sign, let's you do the same as the Response.Write method</p>
<pre><code><%= myVariable %> instead <% Response.Write(myvariable) %>
</code></pre>
http://stackoverflow.com/questions/1496770/pros-cons-on-using-grid-css-framework/1496836#14968361Answer by balexandre for pros/cons on using grid css frameworkbalexandre2009-09-30T08:47:23Z2009-09-30T08:47:23Z<p>if you scroll down the <strong>960.gs</strong> intro page, you will see a <a href="http://net.tutsplus.com/videos/screencasts/a-detailed-look-at-the-960-css-framework/" rel="nofollow">Video Tutorial</a> (under <em>Tutorials</em>) about the Framework, and there <a href="http://jeffrey-way.com/" rel="nofollow">Jeffrey Way</a> explains how to use the 960 framework as well, at the end says why <strong>is not the answer for everything</strong>.</p>
http://stackoverflow.com/questions/1496657/jquery-hover-function-how-to-add-a-delay/1496694#14966942Answer by balexandre for JQuery: Hover function, how to add a delay...balexandre2009-09-30T08:02:49Z2009-09-30T08:14:49Z<p>1 - you need to initialize the dialog first. <a href="http://jsbin.com/ijagi/edit" rel="nofollow">Code here</a></p>
<pre><code>$(document).ready( function() {
$("#dialog").dialog({ autoOpen: false }); // init without showing
$("img").bind("mouseover", function() {
$("#dialog").dialog('open'); // open the dialog
});
});
</code></pre>
<p>2 - just use a counter</p>
<pre><code>var _counter = 0;
var _seconds = 0;
$("img").hover(function() {
// mouseover
_counter = setInterval(openDialogNow(), 1000);
}, function() {
// mouseout
clearInterval(_counter);
});
function openDialogNow() {
// this function will run every second while the user does not mouseout the image
_seconds++; // add 1 to the global variable
if(_seconds == 3) { // will open in 3 seconds, 3 * 1000 miliseconds
_seconds = 0; // reset, so we can reuse later
$("#dialog").dialog('open'); // open the dialog
}
}
</code></pre>
http://stackoverflow.com/questions/1465006/magento-admin-usernames/1486354#14863541Answer by balexandre for magento admin usernamesbalexandre2009-09-28T10:27:39Z2009-09-28T10:27:39Z<p>Not only admin rights but you can create all kinda rights to any user</p>
<p><img src="http://www.balexandre.com/temp/2009-09-28%5F1221.png" alt="alt text" /></p>
<p>The set up the Roles first, Roles is a group of access that you want to permit users to perform, for example, I have a <strong>INVOICE role</strong>, so I can let some users and API Calls to request information only to Invoices and the Dashboard</p>
<p><img src="http://www.balexandre.com/temp/2009-09-28%5F1225.png" alt="alt text" /></p>
<p>Last part is the easiest, assign the role(s) to the user</p>
<p><img src="http://www.balexandre.com/temp/2009-09-28%5F1227.png" alt="alt text" /></p>
http://stackoverflow.com/questions/1821181/visual-studio-2010-markup-view-errorsComment by balexandre on Visual Studio 2010 Markup View Errorsbalexandre2009-11-30T17:30:48Z2009-11-30T17:30:48ZDid you imported System.Data ?http://stackoverflow.com/questions/1778377/visual-studio-weirdness/1778415#1778415Comment by balexandre on Visual Studio weirdnessbalexandre2009-11-22T12:31:02Z2009-11-22T12:31:02Zthough I edited the text so it can be more explicit.http://stackoverflow.com/questions/1778377/visual-studio-weirdness/1778415#1778415Comment by balexandre on Visual Studio weirdnessbalexandre2009-11-22T12:26:08Z2009-11-22T12:26:08Z-1 the example in my question is showing HTML pages, no ASPX related! The objective is to work with the ASP.NET but as for test I show in all 3 files a html extension and I wrote "but if I run the same page (exactly the same code)..."http://stackoverflow.com/questions/1753184/compare-strings-in-c/1753243#1753243Comment by balexandre on Compare Strings in C#balexandre2009-11-18T02:33:19Z2009-11-18T02:33:19ZSystem.Windows.Forms.Timer is used in WinForms... he's doing Web.http://stackoverflow.com/questions/1753184/compare-strings-in-cComment by balexandre on Compare Strings in C#balexandre2009-11-18T02:30:15Z2009-11-18T02:30:15Z"while (x > 0 && x < 100000001)" and we're back to the 80's again...http://stackoverflow.com/questions/1721954/link-in-dreamweaver-using-phpComment by balexandre on link in dreamweaver using phpbalexandre2009-11-12T12:49:19Z2009-11-12T12:49:19Zyou want to link as the user can download or to show the flash movie itself?http://stackoverflow.com/questions/841206/calendar-control-for-cocoa-touch/1719307#1719307Comment by balexandre on Calendar control for cocoa touchbalexandre2009-11-12T08:03:59Z2009-11-12T08:03:59ZThank you! I just asked to close my question as well, even if I did asked firsthttp://stackoverflow.com/questions/1437258/pass-a-value-and-reload-user-control-from-javascript/1710113#1710113Comment by balexandre on Pass a value and reload User Control from Javascriptbalexandre2009-11-11T07:59:34Z2009-11-11T07:59:34Zhumm... there's a hidden textbox, just the way I'm doing but I can't get that value back, and in my page there is no updatePanel in the page... but it gives me a new pair of eyes on the subject. Thxs.http://stackoverflow.com/questions/1654140/orm-persistence-layer-adviceComment by balexandre on ORM/Persistence layer Advicebalexandre2009-11-02T08:28:14Z2009-11-02T08:28:14Zbut just in one big question :)http://stackoverflow.com/questions/1611801/how-to-create-the-highlight-note-popup-buttons-from-the-iphone-kindle/1612272#1612272Comment by balexandre on How to Create the Highlight/Note Popup Buttons from the iPhone Kindlebalexandre2009-10-23T12:50:12Z2009-10-23T12:50:12ZWhatsApp Inc. has this as well <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=310633997&mt=8" rel="nofollow">itunes.apple.com/WebObjects/MZStore.woa/…</a> - I don't thing that need to create a custom view for that, here is their app image: <a href="http://bit.ly/2sWRjQ" rel="nofollow">bit.ly/2sWRjQ</a>http://stackoverflow.com/questions/1612316/javascript-jquery-to-contact-an-apiComment by balexandre on Javascript jquery to contact an APIbalexandre2009-10-23T09:45:20Z2009-10-23T09:45:20Z@Vitor Yes you can, as long as you use a proxy class :)http://stackoverflow.com/questions/1612316/javascript-jquery-to-contact-an-apiComment by balexandre on Javascript jquery to contact an APIbalexandre2009-10-23T09:27:25Z2009-10-23T09:27:25Zcan you please explain what are you doing? what contact API? http://stackoverflow.com/questions/1606127/send-sms-at-a-same-point-of-time/1606184#1606184Comment by balexandre on Send SMS at a same point of timebalexandre2009-10-22T12:11:23Z2009-10-22T12:11:23Zsteps and code added...http://stackoverflow.com/questions/1606127/send-sms-at-a-same-point-of-time/1606184#1606184Comment by balexandre on Send SMS at a same point of timebalexandre2009-10-22T10:26:53Z2009-10-22T10:26:53Z@Nagu you will only call the database when you actually want to send it ... until then, the SendSMSFromList is never called. I can show u code if u need.http://stackoverflow.com/questions/1606127/send-sms-at-a-same-point-of-time/1606184#1606184Comment by balexandre on Send SMS at a same point of timebalexandre2009-10-22T10:25:32Z2009-10-22T10:25:32Z@fvu nice open source app, I need to see this :) I'm using Task manager with curl :D