Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. Good find ultraman. doraemon, did you read the rest of this thread?
  2. My mistake, when I hear Flash I automatically think Web, that's why I brought up ASP.NET. So you're creating desltop applicaions using Flash?
  3. For each item in a ComboBox ?
  4. This is usually done during the install of .NET, I'm sure someone else here will come in with how to install it after the fact. I never did, sorry.
  5. When you create a web application in .NET, the Framework is only required on the server. The client needs an internet connection and a browser. Are you not developing in .NET?
  6. This should work ... SELECT authors.au_id, authors.au_lname, authors.au_fname, books.title_id, books.title FROM authors INNER JOIN titleauthor link_table ON authors.au_id = link_table.au_id INNER JOIN titles books ON link_table.title_id = books.title_id
  7. Why do you want to use an ActiveX grid? Why not .NET?
  8. I've done some remote development on a webserver (shared host), while opening the project the message "This program cannot be trusted" appears, if you reply with "use Frontpage extensions" it should work.
  9. Do you have Frontpage extensions installed?
  10. Denaes, do you realize that you're comparing a scripting language with a programming language, I'm sorry but it cannot be done. Also, let me quote my first post in this thread.... If you�ve developed any web applications (not web pages) with ASP.NET you�ll no longer compare it to Flash. And I will strongly disagree that Flash is a VB lite, weather it's VB6 or any of the languages of .NET. Sorry.
  11. I have face many clients with the same woes... If you are creating apps that use 1024x768 and some users are still on 800x600 then I feel that it's the office manager's or IT dept's duty/obligation to change the res of the monitors not yours (the developer).
  12. Robby

    edit

    you're probably using Server.Transfer and the function may have some unprocessed code.
  13. Is this a game or a business application?
  14. The guy that wrote this article is a from a java shop not an NT shop, and you do get a sense of this as you read along, what interests me most are the benchmarks and stats.
  15. This has little to do with the on going debate, but here's some fuel for thought :) :) :) ...http://www.exia.net/html/app/sitecontent/CGI%20Dot%20Net%20vs%20J2EE.pdf
  16. Wow, is this .NET? Anyhow, try putting a sort order to the SQL... sql = "SELECT * FROM [Messages] ORDER BY SomeColumn DESC"
  17. I can't believe I read the whole thing. :) It's hard to tell which way you're going but as far as .NET porting to Linux or Mac, well that day is soon to arrive. If you�ve developed any web applications (not web pages) with ASP.NET you�ll no longer compare it to Flash. And I will strongly disagree that Flash is a VB lite, weather it's VB6 or any of the languages of .NET. Sorry. :) I too am annoyed with the entire Mac thing.
  18. What is the problem or question that you have?
  19. Do you have a question?
  20. You can start here for the fundementalshttp://www.w3schools.com/xml
  21. On a large scale app you will see a performance hit, Also, the 'low probability of being repeated' part...I would rely on it.
  22. Ask the web host if they support Crystal Reports, because most shared hosts do not.
  23. Here's the way to query... report_in.RecordSelectionFormula = "{myTable.myColumn} = " & SomeVar Also, You shouldn't have to declare it as OBJECT, you can declare it as ReportDocument.... public sub ShowReport(report_in as ReportDocument)
  24. I only buy clones! I rather pick and choose the exact components that I need, none of these nock-offs that Dell, IBM, Compaq, etc decide to install because they go a good deal on it. Simply my opinion. :)
  25. Would you want to use XML?
×
×
  • Create New...