User Keith Maurino - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T23:29:49Z http://stackoverflow.com/feeds/user/5204 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1662190/get-a-files-last-modified-date-in-vb6 1 Get a file's last modified date in VB6 Keith Maurino 2009-11-02T16:10:30Z 2009-11-02T16:53:51Z <p>How do you get any file's last modified date using VB6?</p> http://stackoverflow.com/questions/58138/what-is-the-best-way-to-get-back-into-programming-after-years-of-neglect/58151#58151 0 Answer by Keith Maurino for What is the best way to get back into programming after years of neglect? Keith Maurino 2008-09-12T01:58:35Z 2009-10-13T16:21:35Z <p>It depends on if you will be programming with technology that you once used in the past or if you will be trying to catch up on new technology. If you will be working with languages you used in the past I would say it is kind of like riding a bike. You never really forget the basics. You just have to scrape off the rust... If you plan to get up to date on .NET or something like that I recommend taking a starter course to get you going or maybe interning at a job where you will learn new technology learn hands on.</p> http://stackoverflow.com/questions/1406296/how-to-tell-which-php-file-was-used-to-include-another 1 How to tell which PHP file was used to "include" another? Keith Maurino 2009-09-10T16:23:56Z 2009-09-10T16:49:32Z <p>In PHP when using the include function is the a way to tell from the inserted file which file inserted you? For example, I use the following line often through my code:</p> <pre><code>include 'header.php'; </code></pre> <p>Is there a way to tell from inside header.php what PHP file inserted you?</p> http://stackoverflow.com/questions/1008734/where-to-store-registry-data-for-all-users 0 Where to store Registry data for All Users Keith Maurino 2009-06-17T18:19:32Z 2009-07-23T22:56:10Z <p>I would like to share a small amount of data between All Users in the Windows Registry. For shared read <strong>and write</strong> access between any user that logs into the machine or a service on the machine. Is there a location where this can be done? I have tried using "HKEY_USERS\.DEFAULT\Software\" but this seems to be blocked by the Vista UAC rules.</p> http://stackoverflow.com/questions/1126350/open-a-new-html-page-through-php/1126373#1126373 6 Answer by Keith Maurino for open a new html page through php. Keith Maurino 2009-07-14T15:58:38Z 2009-07-14T15:58:38Z <p>Try using the header function.</p> <pre><code>header("Location: $url"); </code></pre> http://stackoverflow.com/questions/664370/your-favorite-visual-basic-6-tools-and-tips/802259#802259 2 Answer by Keith Maurino for Your favorite Visual Basic 6 tools and tips Keith Maurino 2009-04-29T12:59:09Z 2009-05-04T14:13:23Z <p>The <a href="http://www.vbaccelerator.com" rel="nofollow">vbAccelerator website</a>. It has so many great examples and free controls with the full source. The site has not been updates in a few years now, but it still keeps running and I still go back to it when working in VB6.</p> http://stackoverflow.com/questions/786431/why-does-my-winsock-control-not-function-correctly-in-vb6-within-the-context-of-a/793989#793989 1 Answer by Keith Maurino for Why does my winsock control not function correctly in vb6 within the context of a Form_QueryUnload? Keith Maurino 2009-04-27T15:15:51Z 2009-04-27T15:15:51Z <p>Wouldn't is be easier to just go without the QUIT command. In your server code just assume that the closing of a socket does the same thing as receiving a quit.</p> <p>I addition, one thing you want to watch out for is abrupt shut downs of the client software. For example, a machine that losses power or network connection or a machine that goes into sleep or hibernate mode.</p> <p>In those cases you should be periodically checking the connection for all of the clients from the server and closing any connections that do not respond to some kind of ping command.</p> http://stackoverflow.com/questions/758688/sleep-in-javascript/758710#758710 -2 Answer by Keith Maurino for Sleep in Javascript Keith Maurino 2009-04-17T01:49:23Z 2009-04-17T01:49:23Z <pre><code>setTimeout ( "doSomething()", 5000 ); function doSomething ( ) { // (do something here) } </code></pre> <p>IMPORTANT: make sure you put quotes around the function you would like to call with setTimeout().</p> <p>setTimeout() doesn't halt the execution of the script during the timeout period. It just schedules the specified expression to be run at the specified time.</p> http://stackoverflow.com/questions/737702/invalid-procedure-call-or-argument-when-setting-printer-object/749083#749083 0 Answer by Keith Maurino for "Invalid procedure call or argument" when setting Printer object Keith Maurino 2009-04-14T19:47:45Z 2009-04-14T19:47:45Z <p>You may want to take a look at the following page:</p> <p><a href="http://support.microsoft.com/kb/322710" rel="nofollow">http://support.microsoft.com/kb/322710</a></p> <p>Whenever printing in VB6 I always use this dialog box instead of the common dialog box that comes with VB6. It is a lot more reliable. </p> http://stackoverflow.com/questions/689735/insert-binary-data-into-sql-server-using-php 0 Insert binary data into SQL Server using PHP Keith Maurino 2009-03-27T13:19:49Z 2009-03-27T17:24:08Z <p>I have a varbinary(MAX) field in a SQL Server 2005 database. I'm trying to figure out how to insert binary data (ie. an image) into that field using PHP. I'm using ODBC for the connection to the SQL Server database. I have seen a number of examples that explain this for use with a MySql database but I have not been able to get it to work with SQL Server. Thanks.</p> http://stackoverflow.com/questions/611307/gzip-for-php-on-iis 0 GZip for PHP on IIS Keith Maurino 2009-03-04T16:20:37Z 2009-03-04T16:30:45Z <p>If GZip is enabled in IIS is it only going to improve performance for ASP pages or can it be setup to compress PHP pages as well?</p> http://stackoverflow.com/questions/605007/word-wrap-break-in-ff-help/608083#608083 0 Answer by Keith Maurino for word wrap/break in FF help? Keith Maurino 2009-03-03T20:40:19Z 2009-03-03T20:40:19Z <p>Try adding the following to your CSS</p> <pre><code>#container {overflow: auto;} </code></pre> <p>Or</p> <pre><code>#container {overflow: hidden;} </code></pre> http://stackoverflow.com/questions/607589/copy-image-data-type-from-one-table-to-another 1 Copy image data type from one table to another Keith Maurino 2009-03-03T18:36:09Z 2009-03-03T18:49:55Z <p>How do you copy an image data type (or varbinary(max)) from one table to another in SQL Server, without having to save the data to a file first?</p> http://stackoverflow.com/questions/603502/copy-table-to-a-different-database-on-a-different-sql-server 0 Copy table to a different database on a different SQL Server. Keith Maurino 2009-03-02T18:49:26Z 2009-03-02T18:53:13Z <p>I would like to copy a table from one database to another. I know you can easily do the following if the databases are on the same SQL Server.</p> <p>SELECT * INTO NewTable FROM existingdb.dbo.existingtable;</p> <p>Is there any easy way to do this if the databases are on two different SQL Server's, without having to loop through every record in the original table and inserting it into the new table?</p> <p>Also, this needs to be done in code, outside of SQL Server Management Studio.</p> http://stackoverflow.com/questions/279221/convert-a-picture-box-image-to-a-byte-array-in-vb6 1 Convert a Picture Box image to a Byte Array in VB6 Keith Maurino 2008-11-10T21:19:20Z 2008-11-11T20:02:40Z <p>I have a VB6 picture box that gets an image from a video capture device.</p> <p>I'm trying to figure out how to then convert the picture box to a byte array.</p> http://stackoverflow.com/questions/279221/convert-a-picture-box-image-to-a-byte-array-in-vb6/281986#281986 2 Answer by Keith Maurino for Convert a Picture Box image to a Byte Array in VB6 Keith Maurino 2008-11-11T20:02:40Z 2008-11-11T20:02:40Z <pre><code>Private Type BITMAP bmType As Long bmWidth As Long bmHeight As Long bmWidthBytes As Long bmPlanes As Integer bmBitsPixel As Integer bmBits As Long End Type Private Declare Function GetObject Lib "gdi32" Alias "GetObjectA" (ByVal hObject As Long, ByVal nCount As Long, lpObject As Any) As Long Private Declare Function GetBitmapBits Lib "gdi32" (ByVal hBitmap As Long, ByVal dwCount As Long, lpBits As Any) As Long Private Sub GetPictureBytes() Dim PicBits() As Byte, PicInfo As BITMAP GetObject Picture1.Picture, Len(PicInfo), PicInfo ReDim PicBits((PicInfo.bmWidth * PicInfo.bmHeight * 3) - 1) As Byte GetBitmapBits Picture1.Picture, UBound(PicBits), PicBits(0) End Sub </code></pre> http://stackoverflow.com/questions/280597/problem-with-date-day-month-reversing-on-save/280908#280908 0 Answer by Keith Maurino for Problem with date day/month reversing on save Keith Maurino 2008-11-11T13:46:55Z 2008-11-11T13:46:55Z <p>Go into regedit and go to the following location in the Windows Registry:</p> <p>HKEY_USERS.DEFAULT\Control Panel\International\</p> <p>Check to make sure that the "sShortDate" field is correct.</p> <p>The short date format stored in this location many times is different then the short date format stored in the Windows Control Panel/Regional Options. The short date in the regional options is for the user that you are logged into Windows as. The "sShortDate" field in HKEY_USERS in the short date format used by the Windows Services.</p> http://stackoverflow.com/questions/93105/whats-the-best-way-to-determine-if-a-character-is-a-letter-in-vb6/96098#96098 0 Answer by Keith Maurino for What's the best way to determine if a character is a letter in VB6? Keith Maurino 2008-09-18T19:34:49Z 2008-09-18T19:34:49Z <pre><code>Private Function IsAlpha(ByVal vChar As String) As Boolean Const letters$ = "abcdefghijklmnopqrstuvwxyz" If InStr(1, letters, LCase$(vChar)) &gt; 0 Then IsAlpha = True End Function </code></pre> http://stackoverflow.com/questions/2649/whats-the-best-way-to-determine-if-a-temporary-table-exists-in-sql-server/87536#87536 0 Answer by Keith Maurino for What's the best way to determine if a temporary table exists in SQL Server? Keith Maurino 2008-09-17T20:50:20Z 2008-09-17T20:50:20Z <pre><code>Select name From sysobjects Where type='U' and name = 'TempTable' </code></pre> http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/86785#86785 1 Answer by Keith Maurino for How do I programmatically create a PDF in my .NET application? Keith Maurino 2008-09-17T19:38:07Z 2008-09-17T19:38:07Z <p>I like to use GhostScript. It lets you convert PostScript files to PDF format. Plus it is free to use at no charge.</p> http://stackoverflow.com/questions/55159/in-sql-server-is-it-possible-to-get-id-of-a-record-when-insert-is-executed 2 In SQL Server is it possible to get "id" of a record when Insert is executed? Keith Maurino 2008-09-10T19:56:54Z 2008-09-13T07:37:16Z <p>In SQL Server 2005 I have an "id" field in a table that has the "Is Identity" property set to 'Yes'. So, when an Insert is executed on that table the "id" gets set automatically to the next incrementing integer. Is there an easy way when the Insert is executed to get what the "id" was set to without having to do a Select statement right after the Insert?</p> <blockquote> <p>duplicate of:<br /> <a href="http://beta.stackoverflow.com/questions/42648/best-way-to-get-identity-of-inserted-row" rel="nofollow">http://beta.stackoverflow.com/questions/42648/best-way-to-get-identity-of-inserted-row</a></p> </blockquote> http://stackoverflow.com/questions/58807/can-a-programmer-become-a-decent-graphic-designer/58836#58836 -1 Answer by Keith Maurino for Can a Programmer Become a Decent Graphic Designer? Keith Maurino 2008-09-12T12:40:31Z 2008-09-12T12:40:31Z <p>I am a programmer who does not really have any artistic talent, but I feel that I am a pretty good graphic designer. At least enough to get by. If you asked me to draw anything by hand. Even the simplest of drawings I would have a problem. But since I pretty much know how every feature in Photoshop works I can get away with it. Plus even though that I don't really have any artistic talent, I do know when something looks good or doesn't look good and why. So, when I do see something that I do like the way it looks I am able to reproduce a similar design in my web sites or applications.</p> http://stackoverflow.com/questions/55639/how-do-you-communicate-between-windows-vista-session-0-and-desktop 6 How do you communicate between Windows Vista Session 0 and Desktop? Keith Maurino 2008-09-11T01:29:21Z 2008-09-11T02:31:04Z <p>In prior versions of Windows before Vista you could have a Windows Service interact with the current logged in desktop user to easy display information on the screen from the service. In Windows Vista Session 0 was added for security to isolate the services from the desktop. What is an easy way to communicate between a service and an application running outside of Session 0? So far I have gotten around this by using TCP/IP to communicate between the two but it seems to be kind of a sloppy way to do it.</p> http://stackoverflow.com/questions/6729/icons-how-does-a-developer-with-no-design-skill-make-his-apps-look-pretty/55277#55277 0 Answer by Keith Maurino for Icons: How does a developer with no design skill make his apps look pretty? Keith Maurino 2008-09-10T20:41:21Z 2008-09-10T20:41:21Z <p>I have always liked the icon selections at <a href="http://www.virtuallnk.com/" rel="nofollow">VirtualLNK</a>. They have a good number of icon packages that have a modern look at a reasonable price.</p> http://stackoverflow.com/questions/54217/ajax-xmlhttprequest-object-limt 0 AJAX XMLHttpRequest object limt Keith Maurino 2008-09-10T14:34:44Z 2008-09-10T15:11:19Z <p>Is there a security limit to the number of AJAX XMLHttpRequest objects you can create on a single page? If so, does this vary from one browser to another?</p> http://stackoverflow.com/questions/6166/any-good-php-ide-preferably-free-or-cheap/50643#50643 0 Answer by Keith Maurino for Any good PHP IDE, preferably free or cheap? Keith Maurino 2008-09-08T20:48:28Z 2008-09-08T20:48:28Z <p>I have tried a bunch and the one that I like the most is ConText. It's freeware and has syntax highlighting for many different programming languages including PHP. Plus it is fully customizable to how you want your highlighting to work and there are a large number of pre-configured highlighters that you can download from there website.</p> http://stackoverflow.com/questions/611307/gzip-for-php-on-iis/611354#611354 Comment by Keith Maurino on GZip for PHP on IIS Keith Maurino 2009-03-04T17:43:49Z 2009-03-04T17:43:49Z Does this option only work in Apache or IIS as well?