Thread 25 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | xml, soap forumI am just starting to learn xml in earnest. At this point I know just enough to be dangerous. Is it possible to add xml and soap forums here at Prestwood? If not, is there another topic these questions should be posted in?  mprestwood | Post those questions to the Industry News topic for now. |
|
 6861 Hits |  PrestwoodBoards |
|
Thread 24 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | AttributesAm I to understand correctly that Attributes can omit the word Attribute when they are referenced? I.E. Although WebMethod is used all the time the correct name of the class really is WebMethodAttribute? This seems a little useless.
 adamlum | Dropping the 'Attribute' part of the is just a convention that is commonly practiced. You can use the full class name WebMethodAttribute as well without any trouble.
If the class name minus the 'Attribute' substring is some sort of keyword or reserved word or something like that, you'll of course have to use the full name in that case.
|
|
 5627 Hits |  C# (Visual C# & VS.Net) |
|
Thread 23 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | MVC in C#Anybody using patterns in C#, particularly the MVC pattern? |
 12108 Hits |  C# (Visual C# & VS.Net) |
|
Thread 22 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | Any iPod owners hereI love my 3g 20gb ipod. I am thinking about writing some windows software to use with it and was wondering if there were any other owners on here that might want to collaborate. |
 3522 Hits |  PrestwoodBoards |
|
Thread 21 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | Re: Any iPod owners heretechnically you cannot program for it. There are some firmware hackers out there who have made some incredible attempts but that is not what I am after. You can use the ipod with windows or mac and on both systems it will also function as a firewire drive. I am interested in writing windows software to interface with the ipod. It's a fairly open system as long as you don't want to copy songs to it. If you add songs then you have to make an entry into the iTunesDB to make it show up as playable. The functionality I am interested in would look at backup management, playlist creation. possible office intergration of contacts, notes and appointments etc... |
 2 Hits |  PrestwoodBoards |
|
Thread 20 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 NewbCoder | Keystroke captureI need a function that either disables every keystroke, and keystroke combination, other than keystrokes that I specify, or captures the keystrokes and sends them to any desired function. Any help is appreciated. Thanks in advance  cheddar | the form keydown event is what you want. Set the form KeyPreview to true and this event will capture the key events first. From this event you can check the key that is down and make the decision about what function to call. You can then set the keycode to 0 to cancel the keypress. |
|
 7534 Hits |  Visual Basic Classic |
|
Thread 19 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | Re: Keystroke capturethe form keydown event is what you want. Set the form KeyPreview to true and this event will capture the key events first. From this event you can check the key that is down and make the decision about what function to call. You can then set the keycode to 0 to cancel the keypress. |
 2 Hits |  Visual Basic Classic |
|
Thread 18 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | abstract keyworddo methods defined with the abstract keyword have to be defined inside of an abstract class? I am converting some vb.net code and the MustOverride keyword doesn't appear to directly translate., , TIA  cheddar | Thx for the answer sandman. What I was trying to figure out was abstract methods in non-abstract classes. I am backing up and going through a c# patterns book. I hope the controller pattern holds the solution., , BTW, where in No Cal are you? |
|
 4072 Hits |  C# (Visual C# & VS.Net) |
|
Thread 17 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | Re: abstract keywordThx for the answer sandman. What I was trying to figure out was abstract methods in non-abstract classes. I am backing up and going through a c# patterns book. I hope the controller pattern holds the solution., , BTW, where in No Cal are you? |
 2 Hits |  C# (Visual C# & VS.Net) |
|
Thread 16 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | Professional Resume ServiceOk so being a developer does not always give one the skills to write an effective resume. Can anybody recomend a service to craft a good professional (technical) resume? I've been writing my own for years and I think my version just doesn't accurately express my experience., , Thanks in advance.  mprestwood | I would keep it in the same area. Just make it clear which is your current specialty or specialties. |
|
 3491 Hits |  PrestwoodBoards |
|
Thread 15 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | Re: Professional Resume Servicenever mind. I had a syntac error and didn't realise you explained they should go in another section |
 2 Hits |  PrestwoodBoards |
|
|
|
|
|
|
|
Thread 8 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 akom | Dbase 7I need to connect to a database that is in Dbase 7 can I do that from Visual Basic 6?  cheddar | this is way late but maybe someone else can use it. You should be able to find what you need here: http://www.dbase.com |
|
 2960 Hits |  Visual Basic Classic |
|
Thread 7 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | Re: Dbase 7this is way late but maybe someone else can use it. You should be able to find what you need here: http://www.dbase.com |
 2 Hits |  Visual Basic Classic |
|
Thread 6 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | Re: Remote Access DatabaseAre you using anonymous access, if so turn it off and use intergrated instead, this way you will execute with the rights of the person who logs in |
 2 Hits |  ASP Classic Coding |
|
Thread 5 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 Patricia | javascript and vb .netHi! , how can I invoke a javascript function in vb .net winforms?I'm using the webbrowser control.  cheddar | you need to render out a call to the function in the html. If you have access to the page object of the webbrowser control, send out the call using Page.RegisterStartupScript |
|
 4232 Hits |  VB.Net Language |
|
Thread 4 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | Re: javascript and vb .netyou need to render out a call to the function in the html. If you have access to the page object of the webbrowser control, send out the call using Page.RegisterStartupScript |
 2 Hits |  VB.Net Language |
|
Thread 3 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | Re: Website ProblemI was having the same problem, so I found a post of mine, clicked on my name and saw a link to edit my profile. This one worked like a charm. |
 2 Hits |  PrestwoodBoards |
|
Thread 2 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 aka51 | Help with a loopthe code below for some odd reason will not work. The values for the session variables are being assigned when a database is queried. but for some reason if the session variable is empty it goes onto the else portion of the statement, , , , if Session ("aoemail1") = "" then , strTo = strTo &"here", else , strTo= strTo & Session ("aoemail1"), strTo= strTo & ";", end if , , , if Session ("aoemail2") = "" then , strTo = strTo &"here", else , strTo= strTo & Session ("aoemail2"), strTo= strTo & ";", end if , , , if Session ("supemail2") = "" then , strTo = strTo &"here", else , strTo= strTo & Session ("supemail1") , strTo= strTo & ";", end if , , , if Session ("supemail2") = "" then , strTo = strTo &"here", else , strTo= strTo & Session ("supemail2") , end if
 cheddar | post the code that set's the values and the loop. |
|
 3563 Hits |  ASP Classic Coding |
|
Thread 1 of 25 |
Thread Starter or a Reply (but not last) | | | Group |
 cheddar | Re: Help with a looppost the code that set's the values and the loop. |
 2 Hits |  ASP Classic Coding |
|