Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. As Nerseus said, it is an error in your code that will not allow the IDE to render the page. Check all your code (a chunk at a time) and you should find the problem.
  2. Replace all single quotes with 2 single quotes. commsql.CommandText = "INSERT INTO TIMELOG ([uSERNAME],[LOGTIME],[REASON]) VALUES ('" & username.Replace("'","''") & "','" & loginTime & "','" & reason & "')"
  3. And maybe get the vendor in trouble. :) Well he obviously made a copy for himself.
  4. I would exclude ....Marital Status, Nationality, Age, Place of Birth Simply not their business. COMPUTING & IT SKILLS .... That's how I have it formatted as well. The rest looks fine.
  5. lol, hmm, I plead the fifth. It means nothing.
  6. Yes there are many free articles on-line, but for a total newcomer, nothing beats a structured book to guide you from start to finish. Sometimes articles are too abstract and make many assumptions of prior knowledge.
  7. try exc.message.number
  8. We usually have at least one Moderator or Expert logged on 24/7.
  9. This forum was created only two months ago, and if our sister forum (Extreme Visual Basic Forum) is any indication, we will be number one real soon. In the mean time, a google search should yield plenty of articles.
  10. Even if you don't use Code-Behind, you will use classes and inheratance, imports and all that good stuff that .NET is all about. So you will still end up with many pages of code-behind-the- scenes anyway. Whether it's you're own library or something shipped with the Framework, what's the difference? It's all compiled.
  11. At least you received the package, and the fact that it wasn't empty is a bonus. :)
  12. Robby

    threading

    Can you post some of your code?
  13. If you have questions, we'll answer them.
  14. All I use is Code-Behind. That's my preference.
  15. Placing Tr/Catch in a loop is not a great idea if there is no way out from the Catch.
  16. You're theory is wrong for shared methods, but you're correct about the Stateless thing.
  17. Not to beat a dead horse, read my other post on this page. And it's Robby.
  18. Dr. Madz, I guess you didn't read my post of two weeks ago (2 posts up ). Also, there is no need to use any of the VB6 functions whilst in .NET.
  19. btw, it's preferable to use Replace from the .NET library... aString = myString.Replace(".","/")
  20. Yeah, my fault, I forgot that dtpDato is returning a date type, so you could simply eliminate the pound (#) sign in you SQL string.
  21. I have used both C# and VB.NET for windows & web development, they're both packed with power. It's your choice. Check out the Security settings for CueCoach directory.
  22. Does it throw an exception or just unpredictable results? What does your Connection object look like?
  23. In the declare you put nimi in the Update you put Name and did not close the bracket at the end. Rename your variable to something else, Name is a reserved word. I suggest that you put Option Explicit On at the top of each code page.
  24. It may have a poblem with the field name Date, it's a reserved word. In that case use square brackets... .....Where [date] =....
  25. That's exactly what I was thinking, but that wouldn't bother me as much as not getting what they advertised. If they registered it with MS, you make quite a stink about it on Ebay and with MS. Good-luck.
×
×
  • Create New...