User Leon Tayson - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T23:38:47Zhttp://stackoverflow.com/feeds/user/18413http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/549520/any-resource-codes-on-how-fiddler-works1Any resource/codes on how fiddler works?Leon Tayson2009-02-14T18:35:46Z2009-12-04T23:19:15Z
<p>I need to track http/url requests & redirects from a windows forms application using C#. It should handle both IE & firefox. Not sure if Fiddler is open-source but if i'm not mistaken, it's written using .NET. Sample codes or online articles on how to listen to http/url requests & redirects will be appreciated.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/427775/wix-and-net-framework-pre-requisites4Wix and .NET Framework (Pre-requisites)Leon Tayson2009-01-09T11:37:57Z2009-09-21T08:10:13Z
<p>How can I have my Wix package to download the required .NET Framework when it's not yet installed in the client's machine? I already have the condition to check for the installed .NET version but I'm not sure how to have it downloaded and installed when not found.</p>
<p>ClickOnce does this automatically by checking the pre-requisites in the properties pages. I just need to have it done in Wix due to some other requirements.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1170257/c-newbie-calculate-days-remaining-to-a-birthday/1170357#11703571Answer by Leon Tayson for C# newbie: calculate days remaining to a birthday?Leon Tayson2009-07-23T08:10:17Z2009-07-23T08:19:35Z<p>Try this method</p>
<pre><code>private int GetDaysBeforeBirthday(DateTime birthdate)
{
DateTime nextBday = new DateTime(DateTime.Now.Year, birthdate.Month, birthdate.Day);
if (DateTime.Today > nextBday)
nextBday = nextBday.AddYears(1);
return (nextBday - DateTime.Today).Days;
}
</code></pre>
<p>just pass your birthdate and it will return the remaining days before your next birthday</p>
http://stackoverflow.com/questions/127884/how-to-add-announcement-list-webpart-to-publishing-portal1How to add Announcement list/webpart to Publishing PortalLeon Tayson2008-09-24T15:29:48Z2009-04-21T06:53:43Z
<p>I have a Publishing Portal site and I need to add some announcements to some of the pages. I've read an article which says that i have to create an announcement list to be able add an announcement web part but i can't seem to find any resources on how i can add an announcement list.</p>
<p>Any help will be greatly appreciated.</p>
<p>TIA!</p>
http://stackoverflow.com/questions/767089/infopath-autonumber-field0InfoPath autonumber fieldLeon Tayson2009-04-20T06:10:17Z2009-04-20T08:03:35Z
<p>I am designing an infopath (Change Request) form:</p>
<p>1)How can i add a text box that automaticaly increments to the next number when a new form is created (adding a new Change Request form to the form library).</p>
<p>2)How do i retrieve information from an existing form to the new form.</p>
<p>NOTE: The field is not inside a repeating table. I need to generate the next Change Request number on each new Change Request form.</p>
<p>TIA!</p>
http://stackoverflow.com/questions/603624/how-can-i-customize-the-freetextbox-menu0How can I customize the FreeTextBox menu?Leon Tayson2009-03-02T19:26:44Z2009-03-16T03:28:57Z
<p>I want to customize the menu of my FreeTextBox (FTB) control on an ASPX page. How do I add/remove elements from it? I'd also like to enable its spell checking feature. Any help/references will be appreciated.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/603624/how-can-i-customize-the-freetextbox-menu/649160#6491600Answer by Leon Tayson for How can I customize the FreeTextBox menu?Leon Tayson2009-03-16T03:28:57Z2009-03-16T03:28:57Z<p>For others reference... You can set the FTB's ToolbarLayout property with a string of buttons used to create the toolbar. Use commas (,) to separate items. A pipe (|) will insert a separator</p>
<pre><code><FTB:FreeTextBox ID="FTB1" runat="server" Width="100%" Height="280px"
ToolbarLayout="ParagraphMenu, Bold, Italic, Underline, Strikethrough, CreateLink, Unlink, RemoveFormat, JustifyLeft, JustifyRight, JustifyCenter, JustifyFull, BulletedList, NumberedList, Indent, Outdent, Cut, Copy, Paste, Undo, Redo, ieSpellCheck">
</FTB:FreeTextBox>
</code></pre>
<p>Spell check is done via ieSpell which doesn't work with firefox. Currently looking at NetSpell for the Spell-check feature.</p>
http://stackoverflow.com/questions/633950/display-full-name-in-asp-net-loginname-control2Display Full Name in ASP.NET LoginName controlLeon Tayson2009-03-11T10:12:51Z2009-03-11T11:24:54Z
<p>I have an .aspx page using a login control with custom authentication. I was wondering if it's possible to have a "Welcome [FirstName] [LastName]" message using the LoginName control instead of the [UserName] that is accessed by default. </p>
<p>I'm thinking of storing these info in the Session object if it's not possible.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/617256/best-way-to-share-session-state-type-data-between-two-net-applications/617399#6173990Answer by Leon Tayson for best way to share "session state" type data between two .net applicationsLeon Tayson2009-03-06T01:12:00Z2009-03-06T01:12:00Z<p>You can use cookies to store your UserID. Both your 1.1 & 2.0 applications can access it without any issues.</p>
http://stackoverflow.com/questions/603724/how-to-implement-limit-with-microsoft-sql-server/603746#6037468Answer by Leon Tayson for How to implement LIMIT with Microsoft SQL Server?Leon Tayson2009-03-02T20:00:09Z2009-03-02T20:07:04Z<p>Starting SQL SERVER 2005, you can do this...</p>
<pre><code>USE AdventureWorks;
GO
WITH OrderedOrders AS
(
SELECT SalesOrderID, OrderDate,
ROW_NUMBER() OVER (ORDER BY OrderDate) AS 'RowNumber'
FROM Sales.SalesOrderHeader
)
SELECT *
FROM OrderedOrders
WHERE RowNumber BETWEEN 10 AND 20;
</code></pre>
<p>or something like this for 2000 and below versions...</p>
<pre><code>SELECT TOP 10 * FROM (SELECT TOP 20 FROM Table ORDER BY Id) ORDER BY Id DESC
</code></pre>
http://stackoverflow.com/questions/503781/complex-sql-query-at-least-for-me/504202#5042020Answer by Leon Tayson for Complex SQL Query (at least for me)Leon Tayson2009-02-02T18:09:24Z2009-02-02T18:33:02Z<p>Here's a simple query that should work with your scenario</p>
<pre><code>SELECT Serial FROM Table1 t1
WHERE Step='enter'
AND (SELECT Max(Date) FROM Table1 t2 WHERE t2.Serial = t1.Serial) = t1.Date
</code></pre>
<p>I've tested this one and this will give you the rows with Serial numbers of 1 & 2</p>
http://stackoverflow.com/questions/475438/is-it-possible-to-track-every-http-url-redirects-using-net0Is it possible to track every http/url redirects using .NET?Leon Tayson2009-01-24T03:36:20Z2009-01-29T21:36:13Z
<p>I'm doing a windows forms application and it requires me to log every url redirect that's happening on the user's machine. Like when a user googles something and he clicked on a sponsored link, there will be a number of redirects that'll happen there and i would like to track those redirects.</p>
<p>Is there any listener class that I can use to accomplish this?</p>
http://stackoverflow.com/questions/490923/how-can-i-know-which-feature-is-clicked-in-a-windows-mobile-application1How can I know which feature is clicked in a Windows Mobile application?Leon Tayson2009-01-29T08:48:44Z2009-01-29T13:30:49Z
<p>How can I know which feature (menu items, buttons, etc.) is clicked in a Windows Mobile application?</p>
<p>I need to create an app which listens to user clicks globally, much like what windows global hooks does and I need to know which part/control of every application the user clicked on.</p>
<p>TIA!</p>
http://stackoverflow.com/questions/484107/progressbar-when-scanning-a-hard-drive/484339#4843390Answer by Leon Tayson for ProgressBar when Scanning a Hard DriveLeon Tayson2009-01-27T17:23:23Z2009-01-27T17:23:23Z<p>You can create a progress bar with incrementing Maximum & Value properties. If you have your Maximum property initially set at 100, on your Timer's Tick event, increment both your Maximum & Value by 1 for example so you'll have values listed below...</p>
<pre><code> Maximum Value
Tick1: 101 1 - 1%
Tick2: 102 2 - 2%
Tick3: 103 3 - 3%
TickN: 100+n n
Finish 100+n 100+n - 100% --> force to fill the progress bar
</code></pre>
<p>You can experiment on your initial Maximum value to have the progress bar move smoother.</p>
http://stackoverflow.com/questions/483702/c-how-can-i-split-this-string-into-an-array/484260#4842600Answer by Leon Tayson for C# How can I split this string into an array?Leon Tayson2009-01-27T17:07:07Z2009-01-27T17:07:07Z<p>This works!</p>
<pre><code> string input =
"smtp:jblack@test.com;SMTP:jb@test.com;X400:C=US;A= ;P=Test;O=Exchange;S=Jack;G=Black;";
string[] parts = input.Split(';');
List<string> output = new List<string>();
foreach(string part in parts)
{
if (part.Contains(":"))
{
output.Add(part + ";");
}
else if (part.Length > 0)
{
output[output.Count - 1] += part + ";";
}
}
foreach(string s in output)
{
Console.WriteLine(s);
}
</code></pre>
http://stackoverflow.com/questions/434557/is-there-a-way-to-detect-all-user-generated-events-click-keypress-in-wind2Is there a way to detect all user generated events (click, keypress, ...) in Windows Mobile?Leon Tayson2009-01-12T05:47:29Z2009-01-12T14:41:10Z
<p>I'll be developing something for a Windows Mobile device using CompactFramework/C#.
I wonder if there is some event available that can capture any user driven event (click, keypress, ...) in context of the device. Sure, I could add some detection code in any of my click event handler for example but I assume that there hundreds of them.</p>
<p>So is there some event or windows mobile API related call that could help me out?</p>
http://stackoverflow.com/questions/395256/transparent-images-with-c-winforms/434706#4347063Answer by Leon Tayson for Transparent images with C# WinFormsLeon Tayson2009-01-12T07:26:44Z2009-01-12T07:26:44Z<p>I was in a similar situation a couple of days ago. You can create a transparent control to host your image.</p>
<pre><code>public class TransparentControl : Control
{
private readonly Timer refresher;
private Image _image;
public TransparentControl()
{
SetStyle(ControlStyles.SupportsTransparentBackColor, true);
BackColor = Color.Transparent;
refresher = new Timer();
refresher.Tick += TimerOnTick;
refresher.Interval = 50;
refresher.Enabled = true;
refresher.Start();
}
protected override CreateParams CreateParams
{
get
{
CreateParams cp = base.CreateParams;
cp.ExStyle |= 0x20;
return cp;
}
}
protected override void OnMove(EventArgs e)
{
RecreateHandle();
}
protected override void OnPaint(PaintEventArgs e)
{
if (_image != null)
{
e.Graphics.DrawImage(_image, (Width / 2) - (_image.Width / 2), (Height / 2) - (_image.Height / 2));
}
}
protected override void OnPaintBackground(PaintEventArgs e)
{
//Do not paint background
}
//Hack
public void Redraw()
{
RecreateHandle();
}
private void TimerOnTick(object source, EventArgs e)
{
RecreateHandle();
refresher.Stop();
}
public Image Image
{
get
{
return _image;
}
set
{
_image = value;
RecreateHandle();
}
}
}
</code></pre>
http://stackoverflow.com/questions/434569/what-strategy-do-you-use-to-sync-your-code-when-working-from-home/434573#4345738Answer by Leon Tayson for What strategy do you use to sync your code when working from homeLeon Tayson2009-01-12T06:02:06Z2009-01-12T06:02:06Z<p>Use a version control software like SVN, SourceOffSite, etc. You just have to check-in all your changes and get the latest changes when you want to sync.</p>
<p>Or you can use Windows Live Sync -> <a href="https://sync.live.com/foldersharetolivesync.aspx" rel="nofollow">https://sync.live.com/foldersharetolivesync.aspx</a></p>
http://stackoverflow.com/questions/295138/how-to-deploy-multiple-projects-in-a-single-msi/432893#4328930Answer by Leon Tayson for How to deploy multiple projects in a single MSI?Leon Tayson2009-01-11T13:03:04Z2009-01-11T13:03:04Z<p>You can use Wix as i've posted here --></p>
<p><a href="http://stackoverflow.com/questions/219327/vs-2005-setup-projects-deploy-many-projects-with-one-msi#432769">http://stackoverflow.com/questions/219327/vs-2005-setup-projects-deploy-many-projects-with-one-msi#432769</a></p>
http://stackoverflow.com/questions/219327/vs-2005-setup-projects-deploy-many-projects-with-one-msi/432769#4327691Answer by Leon Tayson for VS 2005 Setup Projects: Deploy Many Projects With One MSILeon Tayson2009-01-11T11:26:48Z2009-01-11T11:26:48Z<p>You can try Wix to create your installer. There's WixUI_FeatureTree and WixUI_Mondo which are GUI options that are designed to allow users to customize the features that are installed when the package runs.</p>
<p><a href="http://www.codeproject.com/KB/install/WixTutorial2.aspx" rel="nofollow">http://www.codeproject.com/KB/install/WixTutorial2.aspx</a></p>
http://stackoverflow.com/questions/431119/on-your-very-first-program-which-construct-hooked-you-on-programming/431218#4312182Answer by Leon Tayson for On your very first program, which construct hooked you on programming?Leon Tayson2009-01-10T16:10:31Z2009-01-10T16:10:31Z<p>? "HELLO WORLD"</p>
http://stackoverflow.com/questions/430614/get-firefox-url2Get Firefox URL?Leon Tayson2009-01-10T05:40:04Z2009-01-10T10:07:38Z
<p>How can I get the url from a running instance of firefox using .NET 2.0 windows/console app? C# or VB codes will do.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/424182/net-deployment-clickonce-or-msi-client-settings-parameters2.NET Deployment (ClickOnce or MSI) Client Settings/ParametersLeon Tayson2009-01-08T13:15:57Z2009-01-08T16:37:22Z
<p>I've created a windows forms application. I have a requirement of storing some information (in the Registry, Isolated Storage or other serialization method) like ClientID which is a GUID generated from a registration form before the user can download the installation package which is currently ClickOnce deployed. The application is run offline so adding querystring parameters is not an option based on some articles i've read. I thought creating a module to modify the config.deploy file before the client downloads the setup but it might cause some issues when multiple users simultaneously download the app. I'm also looking at having the User enter an email address or any login info at the app's first run, so the necessary info can be downloaded from the web server and stored in the client's machine but i'm not yet sure if they'll approve this method.</p>
<p>I hope I've written this clear enough so I can get some answers soon enough. Any comments/suggestions will be appreciated.</p>
http://stackoverflow.com/questions/412372/how-can-i-get-a-process-cpu-usage-percentage0How can I get a process' cpu usage percentage?Leon Tayson2009-01-05T06:01:11Z2009-01-05T06:36:59Z
<p>How can I get a process' cpu usage percentage ala-Task Manager? I used the PerformanceCounter class but it's 'performance' is not optimal for the app that i'm doing. Is there an alternative method to do this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/408825/how-to-change-the-data-type-of-a-column-with-query/409047#4090471Answer by Leon Tayson for How to change the data type of a column with query?Leon Tayson2009-01-03T13:42:35Z2009-01-03T13:42:35Z<p>ALTER TABLE YourTableNameHere ALTER COLUMN YourColumnNameHere VARCHAR(20)</p>
http://stackoverflow.com/questions/408985/problem-getting-a-mobile-drive-size-using-c-throws-exception-commented/409040#4090402Answer by Leon Tayson for Problem : Getting a mobile drive size using C# throws exception - CommentedLeon Tayson2009-01-03T13:34:13Z2009-01-03T13:34:13Z<p>I'm not sure what that error means but if you want to get the drive's size, you can use</p>
<pre><code> DriveInfo di = new DriveInfo("f"); //Put your mobile drive name
long totalBytes = di.TotalSize;
long freeBytes = di.TotalFreeSpace;
</code></pre>
http://stackoverflow.com/questions/405189/last-inserted-record-id-problems-using-typed-dataset-and-datagridview/405362#4053620Answer by Leon Tayson for Last inserted record ID problems using typed DataSet and DataGridViewLeon Tayson2009-01-01T19:40:00Z2009-01-01T19:40:00Z<p>You can also try declaring your identity column as an OUTPUT parameter in your stored procedure.</p>
<pre><code>CREATE PROCEDURE YourSP
(@ID int OUTPUT, ...
</code></pre>
http://stackoverflow.com/questions/404332/regular-expressions-question-in-net/404403#4044030Answer by Leon Tayson for Regular expressions question in .NET ...Leon Tayson2009-01-01T01:52:30Z2009-01-01T01:52:30Z<p>You can accomplish the accomplish the conversion by checking for the hyperlinks (via regex) and then do something like this...</p>
<pre><code>string displayText = url.Substring(0, maxLength);
string hyperlink = string.Format("<a href=\"{0}\">{1}</a>", url, displayText);
</code></pre>
http://stackoverflow.com/questions/399722/winhttp-winhttprequest-in-net1WinHttp.WinHttpRequest in .NETLeon Tayson2008-12-30T07:30:08Z2008-12-30T08:18:28Z
<p>Is there a built-in .NET class that can replace or work like WinHttp.WinHttpRequest?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/398032/how-to-programmatically-bring-a-laptop-into-sleep-mode/398062#3980626Answer by Leon Tayson for How to programmatically bring a laptop into Sleep mode.Leon Tayson2008-12-29T16:35:49Z2008-12-29T16:35:49Z<p>Look at SystemInformation.PowerStatus, then you can call Application.SetSuspendState to put the PC to Sleep or Hibernate like:</p>
<pre><code>Application.SetSuspendState(PowerState.Hibernate, true, true);
</code></pre>
http://stackoverflow.com/questions/1170257/c-newbie-calculate-days-remaining-to-a-birthday/1170275#1170275Comment by Leon Tayson on C# newbie: calculate days remaining to a birthday?Leon Tayson2009-07-23T08:17:55Z2009-07-23T08:17:55Z+1, i thought he used DateTime.Now which includes the current time.http://stackoverflow.com/questions/633950/display-full-name-in-asp-net-loginname-control/633955#633955Comment by Leon Tayson on Display Full Name in ASP.NET LoginName controlLeon Tayson2009-03-11T11:19:09Z2009-03-11T11:19:09ZI'm not using the default ASP.NET providers and not using Profile also. I settled with storing the user's full name in the session object instead. Thanks!http://stackoverflow.com/questions/603724/how-to-implement-limit-with-microsoft-sql-server/603746#603746Comment by Leon Tayson on How to implement LIMIT with Microsoft SQL Server?Leon Tayson2009-03-02T20:14:25Z2009-03-02T20:14:25ZYou're right... haven't tested it :)http://stackoverflow.com/questions/395256/transparent-images-with-c-winforms/434706#434706Comment by Leon Tayson on Transparent images with C# WinFormsLeon Tayson2009-03-01T01:34:56Z2009-03-01T01:34:56Zas you can see, it's Public. IIRC, i encountered a bug when resizing the form of an anchored TransparentControl. I think it disappears from the form, so I put that Redraw method to be called from the form's resize.http://stackoverflow.com/questions/503781/complex-sql-query-at-least-for-me/503805#503805Comment by Leon Tayson on Complex SQL Query (at least for me)Leon Tayson2009-02-02T18:30:46Z2009-02-02T18:30:46ZThis does not run at all!http://stackoverflow.com/questions/490923/how-can-i-know-which-feature-is-clicked-in-a-windows-mobile-application/491583#491583Comment by Leon Tayson on How can I know which feature is clicked in a Windows Mobile application?Leon Tayson2009-01-29T16:38:31Z2009-01-29T16:38:31ZI need to log which feature is clicked/tapped on the device globally. I've done a desktop version using hooks but as you've mentioned, Windows CE doesn't support mouse hooks. Thanks for answering my question. Any suggestions will be appreciated. +1 for youhttp://stackoverflow.com/questions/475438/is-it-possible-to-track-every-http-url-redirects-using-net/475443#475443Comment by Leon Tayson on Is it possible to track every http/url redirects using .NET?Leon Tayson2009-01-24T05:54:14Z2009-01-24T05:54:14ZNot using a WebBrowser control & I'm trying to monitor any browser the user may be running. I've used fiddler and it would be great if I can implement listening to http redirects from my windows forms app. Imagine this app as a service app which listens to url/http requestshttp://stackoverflow.com/questions/434557/is-there-a-way-to-detect-all-user-generated-events-click-keypress-in-wind/435609#435609Comment by Leon Tayson on Is there a way to detect all user generated events (click, keypress, ...) in Windows Mobile?Leon Tayson2009-01-12T17:22:46Z2009-01-12T17:22:46Z+1, will look into this. Thanks!http://stackoverflow.com/questions/430614/get-firefox-urlComment by Leon Tayson on Get Firefox URL?Leon Tayson2009-01-10T09:00:39Z2009-01-10T09:00:39Zyes, i do realize that. i have this working with IE, in fact, i have this working with firefox but it's using a .NET 3.5 class but the client wants to have it done in .NET 2.0http://stackoverflow.com/questions/430614/get-firefox-urlComment by Leon Tayson on Get Firefox URL?Leon Tayson2009-01-10T06:24:12Z2009-01-10T06:24:12Zyes... i've edited the question. Thanks!http://stackoverflow.com/questions/430614/get-firefox-url/430625#430625Comment by Leon Tayson on Get Firefox URL?Leon Tayson2009-01-10T06:17:34Z2009-01-10T06:17:34ZI've edited the question to add more details. I'm doing a winforms application and i need to get the browser URL. I already have the codes for the IE Url. Thanks!http://stackoverflow.com/questions/427775/wix-and-net-framework-pre-requisites/427814#427814Comment by Leon Tayson on Wix and .NET Framework (Pre-requisites)Leon Tayson2009-01-09T12:28:20Z2009-01-09T12:28:20ZThanks a lot! I'll look into these...http://stackoverflow.com/questions/424182/net-deployment-clickonce-or-msi-client-settings-parameters/424958#424958Comment by Leon Tayson on .NET Deployment (ClickOnce or MSI) Client Settings/ParametersLeon Tayson2009-01-09T03:18:46Z2009-01-09T03:18:46ZRegistration is required in this app and it should happen in a webpage which redirects to the download page after the user successfully registered. The server generates the ClientID which will then be stored in the client machine for upload/posting of data to the web server.http://stackoverflow.com/questions/412372/how-can-i-get-a-process-cpu-usage-percentage/412388#412388Comment by Leon Tayson on How can I get a process' cpu usage percentage?Leon Tayson2009-01-05T09:36:09Z2009-01-05T09:36:09Zstill giving this +1http://stackoverflow.com/questions/412372/how-can-i-get-a-process-cpu-usage-percentage/412388#412388Comment by Leon Tayson on How can I get a process' cpu usage percentage?Leon Tayson2009-01-05T06:27:23Z2009-01-05T06:27:23Zi've edited the question and added some more details.