Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #31.8K
~2K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for deostroll

You shouldn't rely on a specific record being in a specific location in a DBMS (unless you manage the database and its order); no database I know of guarrantees this. Seeking this type of solution tells me that your records are not defined properly to warrant individual selection regardless of …

Member Avatar for huangzhi
0
183
Member Avatar for meabed

A performance tip that has served me well with C++, C#, Java, VB, and scripting languages is counting backwards. When using a comparison in a loop (presumably for termination purposes), if possible, count down to zero instead of up to a non-zero value. Since every machine language in existence has …

Member Avatar for Lisa1110
3
1K
Member Avatar for santiaj

[COLOR=#434343]As a software engineer with over a dozen years of design, implementation, and deployment under my belt, I look for the freedom to decide. I want my voice and experience to be counted during the entire development process down to deployment and I don't want some pencil neck (PN) with …

Member Avatar for Ezzaral
0
126
Member Avatar for mariocatch

1. Get all the file names with something like this, where 'parenFolder" is the top directory of the notepad files and extension is "*.txt". [COLOR=#008000]//on exit, "files" will contain the desired list [/COLOR][COLOR=#008000]//assumes parentFolder is valid and not null [/COLOR][COLOR=#0000ff]private[/COLOR] [COLOR=#0000ff]void[/COLOR] GetProgramFiles([COLOR=#0000ff]string[/COLOR] parentFolder, [COLOR=#2b91af]ArrayList[/COLOR] files, [COLOR=#0000ff]string[/COLOR] extension) { [COLOR=#008000]//if sub …

Member Avatar for mariocatch
0
321

The End.