Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 40 of 195
Search took 0.02 seconds.
Search: Posts Made By: john Wesley
Forum: C# Oct 8th, 2007, 3:14 PM
Replies: 9
Views: 281
Posted By john Wesley
My apologies for expressing false information,...

My apologies for expressing false information, obviously I was firmly under the impression my words were precise, for whatever reason.
Forum: C# Oct 8th, 2007, 8:53 AM
Replies: 9
Views: 281
Posted By john Wesley
As DaWei clearly states, more code would be...

As DaWei clearly states, more code would be helpful in order to diagnose issues confidently, however one thing I have brought up here once or twice before, I believe, is that Timer.Enabled does not...
Forum: Coder's Corner Lounge Oct 3rd, 2007, 12:02 PM
Replies: 15
Views: 333
Posted By john Wesley
I bought a packet of cigarettes yesterday with a...

I bought a packet of cigarettes yesterday with a ten and got change of a twenty...
Forum: Visual Basic .NET Oct 1st, 2007, 8:26 PM
Replies: 4
Views: 172
Posted By john Wesley
string.ToCharArray() ought to do it I should...

string.ToCharArray() ought to do it I should think.
Forum: Coder's Corner Lounge Oct 1st, 2007, 10:18 AM
Replies: 15
Views: 333
Posted By john Wesley
Curiously, that's alot of keywords in the...

Curiously, that's alot of keywords in the *hidden* textbox.
Forum: C# Sep 19th, 2007, 9:55 AM
Replies: 23
Views: 1,368
Posted By john Wesley
The non-Microsoft published C# Specification...

The non-Microsoft published C# Specification surely won't ever let you down.
Forum: Coder's Corner Lounge Sep 15th, 2007, 11:15 AM
Replies: 11
Views: 311
Posted By john Wesley
Visual Studio Editions Comparison Table...

Visual Studio Editions Comparison Table (http://msdn2.microsoft.com/en-us/library/zcbsd3cz(VS.80).aspx)
Forum: Coder's Corner Lounge Sep 9th, 2007, 5:07 PM
Replies: 7
Views: 315
Posted By john Wesley
Thank goodness for quad-core processing...

Thank goodness for quad-core processing technology, and so on.

btw, do you mean the hard drive's login?, Windows login? or the pre-Windows-booting non-encrypted login potential of this application?
Forum: Coder's Corner Lounge Aug 5th, 2007, 7:13 PM
Replies: 11
Views: 231
Posted By john Wesley
I believe the OP is referring to an hard drive...

I believe the OP is referring to an hard drive disk rather than a software disk, in which case, along with Wizards advice you may wish to check the jumpers on the disk drive - making sure they are in...
Forum: C# Jul 31st, 2007, 7:28 PM
Replies: 10
Views: 260
Posted By john Wesley
There is not an event natively exposed to us by...

There is not an event natively exposed to us by the Framework libraries, however, as you mention, we can check the ThreadState, or similarly the IsAlive properties, though, another solution is to...
Forum: C# Jul 25th, 2007, 8:04 AM
Replies: 5
Views: 158
Posted By john Wesley
That one mistake could easily cause you headaches...

That one mistake could easily cause you headaches in the future - does you best to keep a sharp eye.
Forum: C# Jul 24th, 2007, 8:49 PM
Replies: 8
Views: 182
Posted By john Wesley
I agree that a strong-typed list is not neccesary...

I agree that a strong-typed list is not neccesary unless explicitly called for, an ArrayList also has a dynamic length.

You could however, as you are talking of above, use generics to keep track of...
Forum: C# Jul 24th, 2007, 5:39 PM
Replies: 5
Views: 158
Posted By john Wesley
Of course it wont work 'right' - the condition...

Of course it wont work 'right' - the condition will never result to true.

What I suggest you do is track the forms Load and Closing events, setting variables appropriately so that conditional...
Forum: Existing Project Development Jul 15th, 2007, 8:13 PM
Replies: 7
Views: 431
Posted By john Wesley
The window classes are internal and can be...

The window classes are internal and can be assigned dynamically depending on environment settings among other things, so either way, caption or class, the process if fundementally flawed - as Dameon...
Forum: Visual Basic .NET Jul 15th, 2007, 12:18 PM
Replies: 7
Views: 208
Posted By john Wesley
Yes it is just as I thought, I simply needed to...

Yes it is just as I thought, I simply needed to double check VB.NET gave control over this matter...

Create a new instance of a and show as below:


Dim CurrentForm As New TheForm()
...
Forum: Visual Basic .NET Jul 15th, 2007, 8:20 AM
Replies: 7
Views: 208
Posted By john Wesley
NightShade01, Just got up and read your post but...

NightShade01,

Just got up and read your post but give me a little time, simply because I have not used VB.NET for a while and would not want to give you false information, if you wait until I get...
Forum: Visual Basic .NET Jul 14th, 2007, 5:04 PM
Replies: 7
Views: 208
Posted By john Wesley
Yes, its simple, just dont instatiate the forms...

Yes, its simple, just dont instatiate the forms on initial execution of your program but do it within the 'next' buttons click event.

If you need to remember the state of specific elements on the...
Forum: Visual Basic .NET Jul 13th, 2007, 12:40 PM
Replies: 7
Views: 208
Posted By john Wesley
To tackle your last query first - if I have a...

To tackle your last query first - if I have a grasp of what your talking about, but it all depends how you handle this behaviour within your application along with Windows settings. For instance, the...
Forum: Visual Basic .NET Jul 12th, 2007, 10:52 AM
Replies: 4
Views: 228
Posted By john Wesley
Are you getting any exceptions on execution of...

Are you getting any exceptions on execution of the code?

If so what are the details?

Does the user belong to a domain? ie Can the name be passed as "Domain\\MyUser"?

I cant see the problem with my...
Forum: Visual Basic .NET Jul 12th, 2007, 8:06 AM
Replies: 4
Views: 228
Posted By john Wesley
Yeah the chances are the directory should already...

Yeah the chances are the directory should already exist - so if you create it, then alter access rules it should work, if you as the user running the program have the rights to do so.

try something...
Forum: Visual Basic .NET Jul 11th, 2007, 5:54 PM
Replies: 1
Views: 110
Posted By john Wesley
The simplest solution to this is, like Outlook,...

The simplest solution to this is, like Outlook, ask the user for their relevant details and store them securely for use from then on.
Forum: Software Design and Algorithms Jul 10th, 2007, 1:09 PM
Replies: 6
Views: 134
Posted By john Wesley
Then I would recommend using Generics to...

Then I would recommend using Generics to accomplish this, again though, what types you would use depend on your situation but overall this will speed up checking via loops etc.
Forum: Software Design and Algorithms Jul 10th, 2007, 9:23 AM
Replies: 6
Views: 134
Posted By john Wesley
You could use key\value pairs to store...

You could use key\value pairs to store handles\text, or any other defining properties you have in mind.

I know this is the Design and Algorithms forum, but may I ask which language you are using?
Forum: Visual Basic .NET Jul 9th, 2007, 8:09 AM
Replies: 18
Views: 447
Posted By john Wesley
Could you elaborate on why you think the code...

Could you elaborate on why you think the code would appear to be 'better' because of 'the way' he is using objects? - I cant understand why you would think so.
Forum: Visual Basic .NET Jul 8th, 2007, 4:45 PM
Replies: 18
Views: 447
Posted By john Wesley
Yeah as PhilBon has just said, you would need to...

Yeah as PhilBon has just said, you would need to send mail through a mail server - if you dont have your own set-up you would generally send them via your mail provider's server.

Also, alot of...
Forum: Visual Basic .NET Jul 8th, 2007, 12:16 PM
Replies: 18
Views: 447
Posted By john Wesley
mattireland, why dont you just read the...

mattireland, why dont you just read the documentation of the System.Net.Mail namespace and get the satisfaction of doing it yourself?
Forum: C# Jul 8th, 2007, 10:45 AM
Replies: 8
Views: 237
Posted By john Wesley
I have to disagree in that learning C# will give...

I have to disagree in that learning C# will give any more benefit when wishing to learn another language such as Cpp or Java than knowledge of any other language would.

Syntactically you may have an...
Forum: Visual Basic .NET Jul 6th, 2007, 5:54 PM
Replies: 6
Views: 206
Posted By john Wesley
I have not done anything in VB.NET for a while...

I have not done anything in VB.NET for a while but does an Timer object not need to be started explicitly rather than simply enabled? - Im sure it does, so enabling an instance in your application...
Forum: Visual Basic .NET Jul 2nd, 2007, 4:03 PM
Replies: 5
Views: 176
Posted By john Wesley
Have you tried passing the Form object, which can...

Have you tried passing the Form object, which can be referenced using the 'Me' keyword, as the IWin32Window owner and checking if it would then be exposed via the 'OpenForms' property?

Another...
Forum: C# Jun 27th, 2007, 9:59 AM
Replies: 4
Views: 139
Posted By john Wesley
TabControl.TabPages.Count Doesnt that...

TabControl.TabPages.Count

Doesnt that work?

Also, when you add or remove tab-pages the size of the control does not change but rather the tab's either spread out or overrun.
Forum: Visual Basic .NET Jun 23rd, 2007, 1:34 PM
Replies: 2
Views: 168
Posted By john Wesley
Choosing to ignore bigguys post, I recommend you...

Choosing to ignore bigguys post, I recommend you search the Global Address List for alias's because the Alias property is not held within a contacts details but in its properties so you wont find it...
Forum: C# Jun 23rd, 2007, 1:11 PM
Replies: 10
Views: 365
Posted By john Wesley
Samuraijack's will insert those words as you say...

Samuraijack's will insert those words as you say however your command string should not compile at all!

"INSER INTO profilet (id, firstn, lastn) VALUES (" + array[0] + "," + array[1] + "," +...
Forum: C# Jun 22nd, 2007, 5:53 PM
Replies: 3
Views: 223
Posted By john Wesley
Yeah after reading the most part of your post...

Yeah after reading the most part of your post custom control came to my mind just as you mentioned it - wouldnt take too long either considering the requirements.
Forum: C# Jun 22nd, 2007, 5:24 PM
Replies: 3
Views: 223
Posted By john Wesley
I havnt tested it out but does the property...

I havnt tested it out but does the property 'Scrollable' not determine whether or not scrollbars are displays when the content overruns the size of this control?
Forum: Visual Basic .NET Jun 20th, 2007, 10:32 PM
Replies: 4
Views: 150
Posted By john Wesley
Are you familiar with editing the registry? even...

Are you familiar with editing the registry? even more so using the Registry class exposed by .NET?...As this can be quite simple if so.

HKEY_CLASSES_ROOT\Folder\Shell\NewMenuOption - Set your menu...
Forum: Visual Basic .NET Jun 20th, 2007, 9:22 PM
Replies: 4
Views: 150
Posted By john Wesley
Which menu?, a menu within your own application...

Which menu?, a menu within your own application that you have coded to show options when you right-click a file/folder that is otherwise represented by your application? or do you mean the system...
Forum: Coder's Corner Lounge Jun 19th, 2007, 9:20 PM
Replies: 11
Views: 233
Posted By john Wesley
Kind of implying there that I dont know the...

Kind of implying there that I dont know the facts, or at least I thought so...
Forum: Coder's Corner Lounge Jun 19th, 2007, 6:11 PM
Replies: 11
Views: 233
Posted By john Wesley
public/private key encryption. The public key is...

public/private key encryption.

The public key is stored in each destined packet when sent along with your encrypted WEP key, we can then receive it and with our private key and the public key...
Forum: Coder's Corner Lounge Jun 19th, 2007, 6:04 PM
Replies: 7
Views: 207
Posted By john Wesley
Well, I guess every ISP is different, but mines...

Well, I guess every ISP is different, but mines fine and the whole system seems to be developed well - they seem to have taken on-board that you dont want to fill out a full profile every time you...
Forum: Coder's Corner Lounge Jun 19th, 2007, 6:56 AM
Replies: 7
Views: 207
Posted By john Wesley
Dont each of your internet service providers...

Dont each of your internet service providers provide you all with this feature? With BT in the UK I have had the ability to create unlimited amounts of 'disposable' mail addresses since I first...
Showing results 1 to 40 of 195

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 11:32 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC