User Wael Dalloul - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T11:57:36Z http://stackoverflow.com/feeds/user/131595 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1914539/chaning-varchar-meridiem-time-to-twenty-four-hour-time-in-sql/1914650#1914650 0 Answer by Wael Dalloul for Chaning varchar Meridiem Time to Twenty Four Hour time in Sql Wael Dalloul 2009-12-16T13:27:36Z 2009-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#1733626 1 Answer by Wael Dalloul for Search all dates before a specific date in a database (VB.NET|OLE) Wael Dalloul 2009-11-14T07:45:49Z 2009-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 &lt; ?" 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 &lt; 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#1720956 0 Answer by Wael Dalloul for Easy SQL query performance question Wael Dalloul 2009-11-12T09:17:13Z 2009-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#1720584 2 Answer by Wael Dalloul for How implement Rollback feature ? Wael Dalloul 2009-11-12T07:47:41Z 2009-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#1713834 2 Answer by Wael Dalloul for SQL ERROR: Operand should contain 1 column(s) Wael Dalloul 2009-11-11T08:35:48Z 2009-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#1693003 1 Answer by Wael Dalloul for What are Oracle DB name and SID Wael Dalloul 2009-11-07T13:18:57Z 2009-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#1692939 1 Answer by Wael Dalloul for what is an abstract data type in object oriented programming? Wael Dalloul 2009-11-07T12:51:15Z 2009-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#1692404 1 Answer by Wael Dalloul for Right-aligned labels in WinForms Wael Dalloul 2009-11-07T08:14:24Z 2009-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#1678779 4 Answer by Wael Dalloul for How to get an array of months in c# Wael Dalloul 2009-11-05T06:57:48Z 2009-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#1673106 2 Answer by Wael Dalloul for What is the best driver for mysql to connect? Wael Dalloul 2009-11-04T11:06:54Z 2009-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#1673047 0 Answer 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 Dalloul 2009-11-04T10:54:24Z 2009-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#1673030 0 Answer by Wael Dalloul for Popup window, how to Hide URL bar in IE8 Wael Dalloul 2009-11-04T10:49:50Z 2009-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#1666319 2 Answer by Wael Dalloul for How to detect application launch type (auto-start or manual)? Wael Dalloul 2009-11-03T09:51:29Z 2009-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&amp; 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#1672199 4 Answer by Wael Dalloul for SQL Server: How to extract comments from stored procedures for deployment Wael Dalloul 2009-11-04T07:29:31Z 2009-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#1672103 0 Answer by Wael Dalloul for DB file size from master..sysaltfiles Wael Dalloul 2009-11-04T07:01:23Z 2009-11-04T07:01:23Z <p>result varibale in MB.</p> http://stackoverflow.com/questions/1666887/how-to-handle-db-exception-in-c/1666930#1666930 1 Answer by Wael Dalloul for how to handle db exception in c# Wael Dalloul 2009-11-03T12:04:31Z 2009-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#1666868 1 Answer by Wael Dalloul for SQL Server Select Where value LIKE(temporary table value) Wael Dalloul 2009-11-03T11:53:56Z 2009-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#1666006 2 Answer by Wael Dalloul for C# getdrives with type fixed but without usb harddisks? Wael Dalloul 2009-11-03T08:40:51Z 2009-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 &amp;&amp; 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#1657106 0 Answer by Wael Dalloul for autosuggest textbox Wael Dalloul 2009-11-01T12:53:45Z 2009-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#1654032 0 Answer by Wael Dalloul for Inheriting permissions from "web site" folder in IIS 6 Wael Dalloul 2009-10-31T10:48:07Z 2009-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#1642726 1 Answer by Wael Dalloul for C# Filename with Czech Character, not working out Wael Dalloul 2009-10-29T10:21:04Z 2009-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#1624562 1 Answer by Wael Dalloul for C: Terminating the program by pressing a key Wael Dalloul 2009-10-26T12:37:35Z 2009-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#1620256 0 Answer by Wael Dalloul for howt to use .MDF file Wael Dalloul 2009-10-25T07:27:52Z 2009-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#1618024 0 Answer by Wael Dalloul for What are the major differences between Windows CE and Windows Mobile for a programmer? Wael Dalloul 2009-10-24T13:35:19Z 2009-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#1617675 0 Answer by Wael Dalloul for postgreSQL inner join Wael Dalloul 2009-10-24T11:06:49Z 2009-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#1617205 0 Answer by Wael Dalloul for How to detect printer is connect or not using c# 2008? Wael Dalloul 2009-10-24T06:43:39Z 2009-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#1605594 0 Answer by Wael Dalloul for Custom Control in TextBox Help? Wael Dalloul 2009-10-22T07:45:44Z 2009-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#1565877 1 Answer by Wael Dalloul for Declaring a looooong single line string in C# Wael Dalloul 2009-10-14T12:12:50Z 2009-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#1565468 2 Answer by Wael Dalloul for draw table in c#.net 2008 Wael Dalloul 2009-10-14T10:27:48Z 2009-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#1565027 1 Answer by Wael Dalloul for What is the initial size of ArrayList in C#? Wael Dalloul 2009-10-14T08:35:41Z 2009-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#1854807 Comment by Wael Dalloul on create a custom asp.net control Wael Dalloul 2009-12-06T09:09:43Z 2009-12-06T09:09:43Z No, 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-directories Comment by Wael Dalloul on Most recently used directories Wael Dalloul 2009-11-09T06:18:31Z 2009-11-09T06:18:31Z you should ask your question here www.superuser.com http://stackoverflow.com/questions/1666298/how-to-detect-application-launch-type-auto-start-or-manual Comment by Wael Dalloul on How to detect application launch type (auto-start or manual)? Wael Dalloul 2009-11-04T10:44:03Z 2009-11-04T10:44:03Z check now I'm waiting your reply. http://stackoverflow.com/questions/1665969/c-getdrives-with-type-fixed-but-without-usb-harddisks Comment by Wael Dalloul on C# getdrives with type fixed but without usb harddisks? Wael Dalloul 2009-11-03T09:47:46Z 2009-11-03T09:47:46Z sorry but internet was down, check the below link... http://stackoverflow.com/questions/1666023/authentication-error Comment by Wael Dalloul on authentication error!! Wael Dalloul 2009-11-03T08:49:35Z 2009-11-03T08:49:35Z -1 don't have complete details about the error... http://stackoverflow.com/questions/1624461/syntax-error-in-windows-application Comment by Wael Dalloul on Syntax error in windows application Wael Dalloul 2009-10-26T12:19:49Z 2009-10-26T12:19:49Z actually it's very hard to help you from this summary... http://stackoverflow.com/questions/1620214/howt-to-use-mdf-file/1620224#1620224 Comment by Wael Dalloul on howt to use .MDF file Wael Dalloul 2009-10-25T07:36:12Z 2009-10-25T07:36:12Z yes even in SQL Server 2000 http://stackoverflow.com/questions/1620214/howt-to-use-mdf-file/1620224#1620224 Comment by Wael Dalloul on howt to use .MDF file Wael Dalloul 2009-10-25T07:28:56Z 2009-10-25T07:28:56Z SQL 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#1618017 Comment by Wael Dalloul on What are the major differences between Windows CE and Windows Mobile for a programmer? Wael Dalloul 2009-10-24T13:49:51Z 2009-10-24T13:49:51Z This 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#1565542 Comment by Wael Dalloul on Most succinct way to convert ListBox.items to a generic list Wael Dalloul 2009-10-14T10:48:41Z 2009-10-14T10:48:41Z it will give the following error: cannot convert from 'System.Windows.Forms.ListBox.ObjectCollection' to 'System.Collections.Generic.IEnumerable&lt;string&gt;' http://stackoverflow.com/questions/1564953/c-looping-without-using-looping-statements-or-recursion Comment by Wael Dalloul on C: Looping without using looping statements or recursion Wael Dalloul 2009-10-14T08:25:37Z 2009-10-14T08:25:37Z is it allowed to use assembly statements in c code? http://stackoverflow.com/questions/1549968/maximum-index-size-for-array/1549974#1549974 Comment by Wael Dalloul on Maximum index size for array Wael Dalloul 2009-10-11T06:03:48Z 2009-10-11T06:03:48Z he put x_size + counter2 in the second Index http://stackoverflow.com/questions/1547532/how-to-minimize-viewstate-size-of-a-page-in-asp-net/1547535#1547535 Comment by Wael Dalloul on How to minimize viewstate size of a page in asp.net? Wael Dalloul 2009-10-10T11:29:35Z 2009-10-10T11:29:35Z why down voted??? http://stackoverflow.com/questions/1523697/including-always-changing-code-into-an-active-program/1523709#1523709 Comment by Wael Dalloul on Including always changing code into an active program. Wael Dalloul 2009-10-06T05:17:38Z 2009-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#1491558 Comment by Wael Dalloul on Converting from string bits to byte or hex Wael Dalloul 2009-09-29T09:49:39Z 2009-09-29T09:49:39Z +1, You are right, I misunderstood the question.