JosephStyons

9,690
Reputation
799 views

Registered User

Name JosephStyons
Member for 1 year
Seen 6 hours ago
Website
Location North Carolina, United States
Age 29
I am a programmer for a manufacturing company, using Delphi and Oracle in a Win32 client / server environment. I have also done some .Net work in Visual Studio on the side, as a contractor. One of these days I'm going to finish my copy of "Mac OS X Programming".
12h
comment Change username programmatically when connecting to a Sql Server using Windows authentication from a Delphi application
True. Corrected. Thanks.
12h
revised Change username programmatically when connecting to a Sql Server using Windows authentication from a Delphi application
clarified
13h
revised Change username programmatically when connecting to a Sql Server using Windows authentication from a Delphi application
clear memory that contained the pwds after using
13h
answered Change username programmatically when connecting to a Sql Server using Windows authentication from a Delphi application
1d
asked Change username programmatically when connecting to a Sql Server using Windows authentication from a Delphi application
1d
comment How to determine Delphi Application Version
@Wodzu: it works for me in D2007. Does your project have the "Include version information in project" option checked under Project->Options->Version Info? What does Windows Explorer tell you the file version is?
1d
revised How to determine Delphi Application Version
fixed typo
1d
answered Running down a ‘stack overflow’ bug
2d
answered Log File Monitor
Nov
24
comment orderby in sql query
If this solution helped you, then you should mark it as accepted.
Nov
24
revised use of in Keyword IN keyword in Query
formatted
Nov
18
comment Why would this SELECT statement lock up on SQL Server?
exec sp_who2 gave me an ALTER INDEX that is in progress. Seems to be the culprit. Thanks.
Nov
18
comment Why would this SELECT statement lock up on SQL Server?
No to #1. Yes to #2 but who/what?
Nov
18
comment Why would this SELECT statement lock up on SQL Server?
That works, but how can I tell who/what is causing the lock?
Nov
18
asked Why would this SELECT statement lock up on SQL Server?
Nov
16
comment How to disable the Formatter in Delphi 2010
I disabled it because I would sometimes hit Ctrl+D by accident, and make a big mess.
Nov
13
comment Help with strange Delphi 5 IDE problems
I have Delphi 5 installed under Windows 7 and it runs very well, except every once in a while ddevextensions gives an error or two when i close the IDE.
Nov
13
comment How to determine Delphi Application Version
He wants to post the build # into the title bar. To me, that means the application is looking at it's own version information. So part of your scenario #1 is not valid; the EXE will always have access to itself. It might have been renamed though; that is a good point.
Nov
12
awarded  Famous Question
Nov
12
comment How to determine Delphi Application Version
Right you are- done.
Nov
12
revised How to determine Delphi Application Version
added try-finally
Nov
11
comment How to determine Delphi Application Version
This is very nice
Nov
11
revised How to determine Delphi Application Version
included example usage
Nov
11
answered How to determine Delphi Application Version
Nov
11
revised Querying Active Directory from Sql Server 2005
formatted code
Nov
11
answered Querying Active Directory from Sql Server 2005
Nov
9
asked Question about specific lines in a .DPROJ file
Nov
5
comment Quick padding of a string in Delphi
What is typical input for this function? If you have a limited set of real-world inputs, then the algorithm can be tweaked in a way that might be slower for the general case, but will be faster for you. Wodzu has an extreme example.
Nov
5
comment Quick padding of a string in Delphi
@Wodzu, dramatically compared to his original post. Pre-caching results as you do in your example will undoubtedly be faster.. as you said, though, "is it worth it".
Nov
5
revised Quick padding of a string in Delphi
improved example
Nov
5
revised Quick padding of a string in Delphi
added test resuls
Nov
5
revised Quick padding of a string in Delphi
added test template
Nov
5
revised Quick padding of a string in Delphi
my previous version misunderstood the problem
Nov
5
revised Quick padding of a string in Delphi
commented code, added compiler version checks to avoid unicode problems
Nov
5
answered Quick padding of a string in Delphi
Nov
4
awarded  Good Question
Oct
29
answered How to decide when to script something rather than do it manually?
Oct
28
comment project load faster
I consider the "sneaky" mode to be abusive to users, unless you absolutely know that they will be using your program. It means you are forcing the user to wait for your program with every boot, whether they will use it or not.
Oct
28
comment Program both as Console and GUI
Well I would say just two executables is doable. If you build the EXE including your BPLs then there is no need to distribute any "core" files - just one exe per application. But obviously you are the one who knows your deployment needs; I'm glad ildasm's answer was helpful.
Oct
27
answered Program both as Console and GUI
Oct
22
awarded  Popular Question
Oct
21
comment Button component affecting the parent Panel in Delphi
Hmm I don't get any access violations when I add or delete... regardless of the order I do it in. Can you give me the exact steps to reproduce the error? Is it every time you delete a panel, or only the last one, first one, or what? Thanks...
Oct
21
awarded  Popular Question
Oct
21
revised Button component affecting the parent Panel in Delphi
formatting
Oct
21
accepted Button component affecting the parent Panel in Delphi
Oct
21
answered Button component affecting the parent Panel in Delphi
Oct
21
comment Iterate through items in an enumeration in Delphi
I am still wondering what the "@<garbage>" means, though.
Oct
21
comment Iterate through items in an enumeration in Delphi
Ok, I am an idiot. I tried this earlier but I left my "el" as an integer, and didn't realize my mistake. Thank you.
Oct
21
asked Iterate through items in an enumeration in Delphi
Oct
20
comment Are there any programs that will shrink the size of a sql script file?
Whitespace characters are not going to make enough of a difference in a file of this size to overcome this error. You are going to need to break it up into separate files, or use a different editor that can handle it (I don't know of any such editor for sql server).