User Wael Dalloul - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T11:57:36Zhttp://stackoverflow.com/feeds/user/131595http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1914539/chaning-varchar-meridiem-time-to-twenty-four-hour-time-in-sql/1914650#19146500Answer by Wael Dalloul for Chaning varchar Meridiem Time to Twenty Four Hour time in SqlWael Dalloul2009-12-16T13:27:36Z2009-12-16T13:27:36Z<p>try the following query:</p>
<pre><code>update tableName set TwentyFourHourTime =
case TimeMeridiem
WHEN 'PM' THEN Convert(varchar,dateadd(hour,12,TimeOFDay),108)
ELSE Convert(varchar,TimeOFDay,108)
end
</code></pre>
http://stackoverflow.com/questions/1733613/search-all-dates-before-a-specific-date-in-a-database-vb-netole/1733626#17336261Answer by Wael Dalloul for Search all dates before a specific date in a database (VB.NET|OLE)Wael Dalloul2009-11-14T07:45:49Z2009-11-14T08:25:06Z<p>use the parameters to pass the date to the query, it's more saver(no sql injection) and more perfect(it will convert the date format to the correct format)</p>
<pre><code>SQLstr = "SELECT * FROM tb WHERE anomber < ?"
Command.Parameters.Add(New OleDbParameter("@anomber", TextBox1.Text))
Command.CommandText = SQLstr
</code></pre>
<p><strong>Edit:</strong>
if the anomber field is the date field so the user can use < instead of =. </p>
<p>the OP question not clear about what he wants.</p>
<p>Edit2:
after executing the command you should assign the results to the grid that you are using to display the data. </p>
http://stackoverflow.com/questions/1720940/easy-sql-query-performance-question/1720956#17209560Answer by Wael Dalloul for Easy SQL query performance questionWael Dalloul2009-11-12T09:17:13Z2009-11-12T09:17:13Z<p>Selecting the fields you need is faster, because it's bring less data. this is a general advice to increase the query performance speed.</p>
http://stackoverflow.com/questions/1720573/how-implement-rollback-feature/1720584#17205842Answer by Wael Dalloul for How implement Rollback feature ?Wael Dalloul2009-11-12T07:47:41Z2009-11-12T07:47:41Z<p>You can make a copy from the old file before replacing it, and then if an exception happened restore from this copy.</p>
http://stackoverflow.com/questions/1713829/sql-error-operand-should-contain-1-columns/1713834#17138342Answer by Wael Dalloul for SQL ERROR: Operand should contain 1 column(s)Wael Dalloul2009-11-11T08:35:48Z2009-11-11T08:35:48Z<pre><code>SELECT * FROM
</code></pre>
<p>the problem in the above statement, because you are selecting more than one column,</p>
<p>change it to </p>
<pre><code>SELECT * FROM contact AS b WHERE b.id IN (SELECT e.ID FROM contact AS e WHERE e.firstname
LIKE ? OR e.lastname LIKE ? OR e.email LIKE ? OR e.phone LIKE ? OR e.company LIKE ? OR
e.profession LIKE ? OR e.mobile LIKE ?)
</code></pre>
http://stackoverflow.com/questions/1692976/what-are-oracle-db-name-and-sid/1693003#16930031Answer by Wael Dalloul for What are Oracle DB name and SIDWael Dalloul2009-11-07T13:18:57Z2009-11-07T13:18:57Z<p><a href="http://serverfault.com/questions/49509/oracle-difference-between-sid-db-name-db-domain-global-database-name-service">Oracle difference between SID, DB Name, DB Domain, Global Database Name, Service Name, Service Alias and Instance Name</a></p>
http://stackoverflow.com/questions/1692933/what-is-an-abstract-data-type-in-object-oriented-programming/1692939#16929391Answer by Wael Dalloul for what is an abstract data type in object oriented programming?Wael Dalloul2009-11-07T12:51:15Z2009-11-07T12:51:15Z<p>Shortly: abstract means that you can't make objects from the defined class. ex: if you have shape,square and rectangle classes, but you don't want to define any objects from shape so you will mark it as abstract...</p>
<p>after that if the user try to define a new object from shape, he will got compiler error..</p>
http://stackoverflow.com/questions/1692383/right-aligned-labels-in-winforms/1692404#16924041Answer by Wael Dalloul for Right-aligned labels in WinFormsWael Dalloul2009-11-07T08:14:24Z2009-11-07T08:20:52Z<p>if you set the form property RightToLeft = yes;
so you should not use the Text Align property just set the Anchor.
try this approaches:</p>
<pre><code>Form.righttoleft = yes;
label.anchor = Top, Right;
label.TextAlign = TopLeft;
</code></pre>
<p>or </p>
<pre><code>Form.righttoleft = No;
label.anchor = Top, Right;
label.TextAlign = TopRight;
</code></pre>
<p>or</p>
<pre><code>Form.righttoleft = yes;
label.righttoleft = No;
label.anchor = Top, Right;
label.TextAlign = TopRight;
</code></pre>
http://stackoverflow.com/questions/1678771/how-to-get-an-array-of-months-in-c/1678779#16787794Answer by Wael Dalloul for How to get an array of months in c#Wael Dalloul2009-11-05T06:57:48Z2009-11-05T06:57:48Z<pre><code>string[] months = new string[] {"January", "February", "March", "April", "May",
"June", "July", "August", "September", "October", "November", "December"};
</code></pre>
http://stackoverflow.com/questions/1673077/what-is-the-best-driver-for-mysql-to-connect/1673106#16731062Answer by Wael Dalloul for What is the best driver for mysql to connect?Wael Dalloul2009-11-04T11:06:54Z2009-11-04T11:06:54Z<p>you can use:
<a href="http://bitdaddys.com/MySQL-ConnectorNet.html" rel="nofollow">mysql connector/net</a></p>
<p>or you can use <a href="http://www.aspfree.com/c/a/Database/Database-Programming-in-C-Sharp-with-MySQL-Using-OleDB/" rel="nofollow">OleDB</a></p>
http://stackoverflow.com/questions/1673024/in-which-database-software-language-is-it-possible-to-create-a-database-accessi/1673047#16730470Answer by Wael Dalloul for in which database software / language is it possible to create a database accessible by multiple users except its two collumns to be accessed only by admin user .Wael Dalloul2009-11-04T10:54:24Z2009-11-04T10:54:24Z<p>In most DBMS like (Oracle, Mysql, SQL server...) you can grant users access to any column you want or revoke any permission.</p>
http://stackoverflow.com/questions/1673003/popup-window-how-to-hide-url-bar-in-ie8/1673030#16730300Answer by Wael Dalloul for Popup window, how to Hide URL bar in IE8Wael Dalloul2009-11-04T10:49:50Z2009-11-04T10:49:50Z<p>Use <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/PopupControl/PopupControl.aspx" rel="nofollow">PopupControl</a> instead of pupup window.</p>
http://stackoverflow.com/questions/1666298/how-to-detect-application-launch-type-auto-start-or-manual/1666319#16663192Answer by Wael Dalloul for How to detect application launch type (auto-start or manual)?Wael Dalloul2009-11-03T09:51:29Z2009-11-04T10:43:24Z<p>Quick hint:
You can use Arguments to distinguish between both, and put those arguments in the shortcut.<br>
check <a href="http://msdn.microsoft.com/en-us/library/96s74eb0.aspx" rel="nofollow">Command Line Argument</a> to know how to use arguments, and in the shortcut write </p>
<pre><code>path\executable.exe autostart
</code></pre>
<p>for the shortcut in startup folder, after that in your application check this...</p>
<p><strong>EDIT1:</strong>
the path in windows mobile start from \ this is the root, now to get the startup folder
you can write:</p>
<pre><code>\widnows\startup
</code></pre>
<p>and the complete path will be</p>
<pre><code>\widnows\startup\executable.exe autostart
</code></pre>
<p><strong>Edit2</strong>:
Open the setup project, right click on "file system and target machine, then "Add Special Folder" then choose "startup Folder", after that put your shortcut with arguments there...</p>
<p><strong>Edit3:</strong></p>
<p>you are right, there is no place to put arguments, so we should create the shortcut manually:</p>
<p>1- create text file and change the extension to be lnk</p>
<p>2- edit the file by drag& drop it to notepad, and write inside it the following line:</p>
<pre><code>43#"\widnows\startup\executable.exe autostart"
</code></pre>
<p>3- take care about the first number, it's the character count after the #, if you change the path so you should recalculate the character count again and put it in the first.
4- add this file to the start up folder in VS....</p>
http://stackoverflow.com/questions/1672179/sql-server-how-to-extract-comments-from-stored-procedures-for-deployment/1672199#16721994Answer by Wael Dalloul for SQL Server: How to extract comments from stored procedures for deploymentWael Dalloul2009-11-04T07:29:31Z2009-11-04T07:36:04Z<p>You can use the WITH ENCRYPTION option: </p>
<pre><code>CREATE PROCEDURE dbo.foo
WITH ENCRYPTION
AS
BEGIN
SELECT 'foo'
--Try this just to make sure
END
</code></pre>
<p>before that make sure you keep the logic of the stored procedure in a safe place, since you won't have easy access to the procedure's code once you've saved it.</p>
<p>After that the user can't use <strong>Enterprise Manager</strong> or <strong>sp_helptext</strong> to get the Source Code but this can be cracked...</p>
http://stackoverflow.com/questions/1672072/db-file-size-from-master-sysaltfiles/1672103#16721030Answer by Wael Dalloul for DB file size from master..sysaltfilesWael Dalloul2009-11-04T07:01:23Z2009-11-04T07:01:23Z<p>result varibale in MB.</p>
http://stackoverflow.com/questions/1666887/how-to-handle-db-exception-in-c/1666930#16669301Answer by Wael Dalloul for how to handle db exception in c#Wael Dalloul2009-11-03T12:04:31Z2009-11-03T12:04:31Z<p>you can check message text,Number and do switch case on it to know the error...</p>
<pre><code>try {
}
catch (SqlException ex)
{
string str;
str = "Source:"+ ex.Source;
str += "\n"+ "Number:"+ ex.Number.ToString();
str += "\n"+ "Message:"+ ex.Message;
str += "\n"+ "Class:"+ ex.Class.ToString ();
str += "\n"+ "Procedure:"+ ex.Procedure.ToString();
str += "\n"+ "Line Number:"+ex.LineNumber.ToString();
str += "\n"+ "Server:"+ ex.Server.ToString();
Console.WriteLine (str, "Database Exception");
}
</code></pre>
http://stackoverflow.com/questions/1666827/sql-server-select-where-value-liketemporary-table-value/1666868#16668681Answer by Wael Dalloul for SQL Server Select Where value LIKE(temporary table value)Wael Dalloul2009-11-03T11:53:56Z2009-11-03T11:53:56Z<pre><code>SELECT * FROM Users,NewTable WHERE vLastName LIKE Values + '%'
</code></pre>
http://stackoverflow.com/questions/1665969/c-getdrives-with-type-fixed-but-without-usb-harddisks/1666006#16660062Answer by Wael Dalloul for C# getdrives with type fixed but without usb harddisks?Wael Dalloul2009-11-03T08:40:51Z2009-11-03T09:46:01Z<p>use DriveType to detect the type of the drive:</p>
<pre><code>using System.IO;
DriveInfo[] allDrives = DriveInfo.GetDrives();
foreach (DriveInfo d in allDrives)
{
if (d.IsReady && d.DriveType == DriveType.Fixed)
{
// This is the drive you want...
}
}
</code></pre>
<p><a href="http://msdn.microsoft.com/en-us/library/system.io.driveinfo.aspx" rel="nofollow">DriveInfo Class</a></p>
<p>EDIT1:</p>
<p>check the following link:
<a href="http://stackoverflow.com/questions/220123/how-do-i-detected-whether-a-hard-drive-is-connected-via-usb">How do I detected whether a hard drive is connected via USB?</a></p>
http://stackoverflow.com/questions/1657098/autosuggest-textbox/1657106#16571060Answer by Wael Dalloul for autosuggest textbox Wael Dalloul2009-11-01T12:53:45Z2009-11-01T12:53:45Z<p>You can use compobox like auto suggest textbox if you have a list of the values. give us more info to give you more details.</p>
http://stackoverflow.com/questions/1654020/inheriting-permissions-from-web-site-folder-in-iis-6/1654032#16540320Answer by Wael Dalloul for Inheriting permissions from "web site" folder in IIS 6Wael Dalloul2009-10-31T10:48:07Z2009-10-31T10:48:07Z<p>I think you can set the permissions for all files and folders by going to the directory and then use the security tab to set the permission so it will set it to the folder,subfolders and files..</p>
http://stackoverflow.com/questions/1642701/c-filename-with-czech-character-not-working-out/1642726#16427261Answer by Wael Dalloul for C# Filename with Czech Character, not working outWael Dalloul2009-10-29T10:21:04Z2009-10-29T10:21:04Z<p>Your windows should have czech language to be able to show the correct file name, this is not related to c#.</p>
http://stackoverflow.com/questions/1624480/c-terminating-the-program-by-pressing-a-key/1624562#16245621Answer by Wael Dalloul for C: Terminating the program by pressing a keyWael Dalloul2009-10-26T12:37:35Z2009-10-26T12:37:35Z<p>I think using getch() is the most common by far is keeping a console window from closing , but in C++ most experienced programmers will recommend that you use cin.get</p>
<pre><code> std::cin.get();
</code></pre>
<p>instead of:</p>
<pre><code>getch();
</code></pre>
http://stackoverflow.com/questions/1620214/howt-to-use-mdf-file/1620256#16202560Answer by Wael Dalloul for howt to use .MDF fileWael Dalloul2009-10-25T07:27:52Z2009-10-25T07:27:52Z<p>You need to attach the .mdf data file to SQL Server, and SQL server will automatically generate a new LOG file, after that you can pass any query to the database...</p>
http://stackoverflow.com/questions/1618014/what-are-the-major-differences-between-windows-ce-and-windows-mobile-for-a-progra/1618024#16180240Answer by Wael Dalloul for What are the major differences between Windows CE and Windows Mobile for a programmer?Wael Dalloul2009-10-24T13:35:19Z2009-10-24T13:35:19Z<p>No big difference between them, you can Target <strong>Windows CE</strong> from VS and your application will work on both Windows CE and Windows Mobile. because you are working under Compact Framework so that's logical, for me as a developer working on PDAs, just I find deference when I tried to make full screen program.</p>
http://stackoverflow.com/questions/1617671/postgresql-inner-join/1617675#16176750Answer by Wael Dalloul for postgreSQL inner joinWael Dalloul2009-10-24T11:06:49Z2009-10-24T11:06:49Z<p>write it like this way:</p>
<pre><code>select * from Roles INNER JOIN Users On (Roles.Role= Users.RoleId)
</code></pre>
<p>check <a href="http://www.java2s.com/Code/PostgreSQL/Table-Joins/INNERJOINtwotables.htm" rel="nofollow">INNER JOIN two tables</a> for more info...</p>
<p>or you can use the simple way that it works with most DBMS:</p>
<pre><code>select * from Roles,Users where Roles.Role= Users.RoleId
</code></pre>
http://stackoverflow.com/questions/1617200/how-to-detect-printer-is-connect-or-not-using-c-2008/1617205#16172050Answer by Wael Dalloul for How to detect printer is connect or not using c# 2008?Wael Dalloul2009-10-24T06:43:39Z2009-10-24T06:43:39Z<p><a href="http://www.codeproject.com/KB/printing/printeroffline.aspx" rel="nofollow">How to Check if your Printer is Connected, using C#</a></p>
http://stackoverflow.com/questions/1605566/custom-control-in-textbox-help/1605594#16055940Answer by Wael Dalloul for Custom Control in TextBox Help?Wael Dalloul2009-10-22T07:45:44Z2009-10-22T07:45:44Z<p>Try the following:</p>
<pre><code>public partial class PreTextBox : TextBox
{
public PreTextBox()
{
InitializeComponent();
Text = PreText;
ForeColor = Color.Gray;
}
public string PreText
{
set{Text = value;}
get{return Text;}
}
}
</code></pre>
http://stackoverflow.com/questions/1565847/declaring-a-looooong-single-line-string-in-c/1565877#15658771Answer by Wael Dalloul for Declaring a looooong single line string in C#Wael Dalloul2009-10-14T12:12:50Z2009-10-14T12:12:50Z<p>you can use StringBuilder like this:</p>
<pre><code>StringBuilder str = new StringBuilder();
str.Append("this is my really long string. this is my long string. ");
str.Append("this is my really long string. this is my long string. ");
str.Append("this is my really long string. this is my long string. ");
str.Append("this is my really long string. this is my long string. ");
string s = str.ToString();
</code></pre>
<p>You can also use: Text files, resource file, Database and registry.</p>
http://stackoverflow.com/questions/1565442/draw-table-in-c-net-2008/1565468#15654682Answer by Wael Dalloul for draw table in c#.net 2008Wael Dalloul2009-10-14T10:27:48Z2009-10-14T10:27:48Z<p>You can use <a href="http://msdn.microsoft.com/en-us/library/e0ywh3cz.aspx" rel="nofollow">DataGridView</a> component.</p>
http://stackoverflow.com/questions/1565000/what-is-the-initial-size-of-arraylist-in-c/1565027#15650271Answer by Wael Dalloul for What is the initial size of ArrayList in C#?Wael Dalloul2009-10-14T08:35:41Z2009-10-14T08:35:41Z<pre><code>ArrayList list = new ArrayList();
</code></pre>
<p>size = 0 before adding items to the arrayList, means no items are there.</p>
http://stackoverflow.com/questions/1854798/create-a-custom-asp-net-control/1854807#1854807Comment by Wael Dalloul on create a custom asp.net controlWael Dalloul2009-12-06T09:09:43Z2009-12-06T09:09:43ZNo, there is no click event to the listbox, if you try to do what you said you get a SelectedIndexChanged event.http://stackoverflow.com/questions/1699361/most-recently-used-directoriesComment by Wael Dalloul on Most recently used directoriesWael Dalloul2009-11-09T06:18:31Z2009-11-09T06:18:31Zyou should ask your question here www.superuser.comhttp://stackoverflow.com/questions/1666298/how-to-detect-application-launch-type-auto-start-or-manualComment by Wael Dalloul on How to detect application launch type (auto-start or manual)?Wael Dalloul2009-11-04T10:44:03Z2009-11-04T10:44:03Zcheck now I'm waiting your reply.http://stackoverflow.com/questions/1665969/c-getdrives-with-type-fixed-but-without-usb-harddisksComment by Wael Dalloul on C# getdrives with type fixed but without usb harddisks?Wael Dalloul2009-11-03T09:47:46Z2009-11-03T09:47:46Zsorry but internet was down, check the below link...http://stackoverflow.com/questions/1666023/authentication-errorComment by Wael Dalloul on authentication error!!Wael Dalloul2009-11-03T08:49:35Z2009-11-03T08:49:35Z-1 don't have complete details about the error...http://stackoverflow.com/questions/1624461/syntax-error-in-windows-applicationComment by Wael Dalloul on Syntax error in windows applicationWael Dalloul2009-10-26T12:19:49Z2009-10-26T12:19:49Zactually it's very hard to help you from this summary...http://stackoverflow.com/questions/1620214/howt-to-use-mdf-file/1620224#1620224Comment by Wael Dalloul on howt to use .MDF fileWael Dalloul2009-10-25T07:36:12Z2009-10-25T07:36:12Zyes even in SQL Server 2000http://stackoverflow.com/questions/1620214/howt-to-use-mdf-file/1620224#1620224Comment by Wael Dalloul on howt to use .MDF fileWael Dalloul2009-10-25T07:28:56Z2009-10-25T07:28:56ZSQL server will automatically generate the log file after attaching the database, no need to make it like this way...http://stackoverflow.com/questions/1618014/what-are-the-major-differences-between-windows-ce-and-windows-mobile-for-a-progra/1618017#1618017Comment by Wael Dalloul on What are the major differences between Windows CE and Windows Mobile for a programmer?Wael Dalloul2009-10-24T13:49:51Z2009-10-24T13:49:51ZThis is not correct we can use VS.NET for both.http://stackoverflow.com/questions/1565504/most-succinct-way-to-convert-listbox-items-to-a-generic-list/1565542#1565542Comment by Wael Dalloul on Most succinct way to convert ListBox.items to a generic listWael Dalloul2009-10-14T10:48:41Z2009-10-14T10:48:41Zit will give the following error: cannot convert from 'System.Windows.Forms.ListBox.ObjectCollection' to 'System.Collections.Generic.IEnumerable<string>'
http://stackoverflow.com/questions/1564953/c-looping-without-using-looping-statements-or-recursionComment by Wael Dalloul on C: Looping without using looping statements or recursionWael Dalloul2009-10-14T08:25:37Z2009-10-14T08:25:37Zis it allowed to use assembly statements in c code?http://stackoverflow.com/questions/1549968/maximum-index-size-for-array/1549974#1549974Comment by Wael Dalloul on Maximum index size for array Wael Dalloul2009-10-11T06:03:48Z2009-10-11T06:03:48Zhe put x_size + counter2 in the second Indexhttp://stackoverflow.com/questions/1547532/how-to-minimize-viewstate-size-of-a-page-in-asp-net/1547535#1547535Comment by Wael Dalloul on How to minimize viewstate size of a page in asp.net?Wael Dalloul2009-10-10T11:29:35Z2009-10-10T11:29:35Zwhy down voted??? http://stackoverflow.com/questions/1523697/including-always-changing-code-into-an-active-program/1523709#1523709Comment by Wael Dalloul on Including always changing code into an active program.Wael Dalloul2009-10-06T05:17:38Z2009-10-06T05:17:38Z+1 for many options that you gave.http://stackoverflow.com/questions/1491550/converting-from-string-bits-to-byte-or-hex/1491558#1491558Comment by Wael Dalloul on Converting from string bits to byte or hexWael Dalloul2009-09-29T09:49:39Z2009-09-29T09:49:39Z+1, You are right, I misunderstood the question.