Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
5
Posts with Upvotes
5
Upvoting Members
5
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #2K
~25.0K People Reached
About Me

An hour of good coding prevents a bad day of troubleshooting is my philosophy.

Interests
Theme parks, archery, math, science, computers, cars, problem solving, politics, fine dining, cruising,…
PC Specs
Dell Inspiron with i5 8GB RAM dual HD displays -Windows 7 and a Dell Precision M6800 - Windows 8.1 with…
Favorite Tags

33 Posted Topics

Member Avatar for gtcorwin

I am writing SSIS packages and at one point I have to check a date field. It may come in any format of the following but I need it to pass any valid date the faster the better of course. Always returns as a varchar Acceptable formats 'mddyyyy', 'mmddyyyy', 'mm/dd/yyyy', …

Member Avatar for Taywin
0
119
Member Avatar for Jack_9

HAHAHAHAHA thanks for debugging your message. I was having difficulty compiling it. No, you are never too young to start. 6 languages is a lot. Syntax is one thing, being able to utilize it and create applications is something that comes mostly with experience. Are you looking for experience? Would …

Member Avatar for Rasmo75
0
179
Member Avatar for Gayal

A Final Year Project generator... something that can search Google for unanswered questions and then generate a suggestion list of projects Have google question topics based upon 1 word, Example: Project topic word: "Stupid" "(Not you but a good enough generic question)" Results: Google found this question asked 5000000000 times …

Member Avatar for Ssandhya
-2
3K
Member Avatar for Maideen
Member Avatar for burhanahmed92

well what I would do is this because there are so few columns string abs=listview.Items[i].Subitem[0].ToString(); abs+=listview.Items[i].Subitem[1].ToString(); abs+=listview.Items[i].Subitem[2].ToString(); abs+=listview.Items[i].Subitem[3].ToString(); OR you can put in another for loop if you have more columns for (int i = 0; i < listview.Items.Count; ++i) string abs=""; for(int j=0;j<=3;++j){ { abs+=listview.Items[i].Subitem[j].ToString(); } do something with …

Member Avatar for SteveDotNet
0
2K
Member Avatar for svsathyavishnu

From what I understand there are benefits to AMD over Intel. I prefer Intel as a desktop and server system. They just seem to run cleaner. But recent research has uncovered to me that in a XEN Server environment, the Opteron chipset is better to do Virtual with. I can't …

Member Avatar for pintukennady31
0
252
Member Avatar for chloe.baee

I will share a little something with you. My brother-in-law died and he was a Social Studies teacher in HS. He retired 13 years ago and he taught for nearly 30 years. They made a facebook page for him and there have been nearly 200 posts from former students remembering …

Member Avatar for Agilemind
0
429
Member Avatar for gtcorwin

I click the Code button and it erases all the code I typed and won't let me type in the box any more. I am getting realy annoyed trying to post c code because I can't add the curly brace... can someone please tell me what it takes to post …

Member Avatar for deceptikon
0
171
Member Avatar for abelLazm

Granted: but then there is a painful squeal that persists in your ears until someone hugs you, and you live in a commune of armless humanoids that never shutup, speak a different language and have no compassion. I wish I could buy Google

Member Avatar for James_40
8
9K
Member Avatar for pooja.singh.3950
Member Avatar for peopletrendin
Member Avatar for verzipkhan

Troubleshooting skills. Understand what proactive means. Understand how certain application functions work on the network. Project Management, Time management, resource management Willingness to get involved. Not pass the buck, team player, willing to help people even if "That's not my job" (that form of arrogance makes you a jerk!) Communication …

Member Avatar for JessieMay
0
131
Member Avatar for silvercats

My preference is to have the open curly brace on the opening line with starting code. Uses less white space and also I only indent 2 spaces with a tab. I write all comments outside of the function so as not to sloppy the code. I don't do in line …

Member Avatar for samson.dadson.3_1
0
507
Member Avatar for Glaven

Like Maven, I would just start with the highest number possible in your random array and start comparing at (0,0) and iterate through ithe array until you find a smaller number then keep going if the next smallest number is found then that becomes the smallest until you find a …

Member Avatar for Glaven
0
622
Member Avatar for Zyxl

Sounds exciting. I would recommend finding walkthroughs if there are any for your working environment I assume, non Windows world. I love C++, so powerful and fast. Check out a lot of the available frameworks and libraries that people have built in C++ to speed up your development, why reinvent …

Member Avatar for Zyxl
0
748
Member Avatar for mattster
Member Avatar for kxjakkk

IN your two structs at the top, your closing curly brace is missing the // to show the end oif the struct Your forloops look like they are buggered, double check the syntax, or maybe I'm just missing something?

Member Avatar for gtcorwin
0
845
Member Avatar for jjones0150

Put a label on the form where you want it and then assign the .Text value of the label what you were putting in the messagebox.

Member Avatar for castajiz_2
0
196
Member Avatar for pocka.lesole

Not to be mean but, if you need to post and get help with homework on this level, you have just been filtered out of Computer Science, perhaps a different career path is in your future?

Member Avatar for <M/>
-3
191
Member Avatar for kks21199

I used the following to download some files. Don't know if this will solve your issue, but it worked for me. It was in C# replace [] with the curly braces. Posting code is causing me fits private bool FetchFDICFile(string urlAddress, string @location) [ WebClient webClient = new WebClient(); webClient.DownloadFileCompleted …

Member Avatar for Begginnerdev
0
1K
Member Avatar for matrixdevuk

The way I see it, the donor should get advertising that they need help. It makes sense, by donating they are essentially paying for support. Dani, while I am not a fan of spam, I think it should remain especially when Mike points out the metrics for who gets the …

Member Avatar for matrixdevuk
0
215
Member Avatar for Mosestuilau

Is this a drive that was in another computer and now in the current one as a second drive? If so, There are two ways. One is commandline as outlined in this link, http://pario.no/2011/05/23/clear-read-only-flag-on-disk-in-windows-7-using-diskpart/ I would recommend you be careful in doing the commandline and pay attention. Review it first …

Member Avatar for gtcorwin
0
73
Member Avatar for jjones0150
Member Avatar for happygeek

People tend to do stupid stuff to impress their friends. They need to be educated about it. Loss of the device, saving to the cloud, texting. It is all so easy to lose control of your "private information" I tell my kids, if you don't want me to see it, …

Member Avatar for gtcorwin
1
538
Member Avatar for rk1993

consider iterating through the string for the various substrings, working from biggest substring to smallest, doing it in this order you find the biggest one first and then you have found it. With each substring, reverse it and compare. if the string is 8 characters long, flip it check it, …

Member Avatar for gtcorwin
0
186
Member Avatar for Saboor880

All versions of MS SQL will run on Windows 7 I would run the latest. You can use Express for free. With respect to VB vs C#, I think it is a matter of preference to writing code. VB is a little "looser" in syntax structure. C# is more likke …

Member Avatar for cgeier
0
313
Member Avatar for Mya:)
Member Avatar for oussama_1
0
273
Member Avatar for xxbiggx850
Member Avatar for Slavi

Woudld this do it? string result = s[0]+s.Substring(1,s.Length-1).ToUpper();

Member Avatar for Slavi
0
161
Member Avatar for Theresa_1

If it is a windows Machine I would suggest you reinstall the OS and run SDELETE on the disk after reinstalling and run multiple passes. http://technet.microsoft.com/en-us/sysinternals/bb897443.aspx

Member Avatar for gtcorwin
0
133
Member Avatar for gtcorwin

My company has Xen servers, the hardware is pretty solid, my questions pertains to setting up a Virtual Windows 2014R2 File Server in this environment. Has anyone had any experience with VM file servers? Would you create a small VHD (100GB) for the file server as one and then have …

Member Avatar for CimmerianX
0
333
Member Avatar for sahil_4

What are your first thoughts? What process would you use if you were doing it step by step? Have you tried yet?

Member Avatar for dinad578
-1
106
Member Avatar for Ivzirnalsradeys
Member Avatar for David W
0
188

The End.