Jump to content
Xtreme .Net Talk

reboot

Avatar/Signature
  • Posts

    36
  • Joined

  • Last visited

Everything posted by reboot

  1. Yes, I think technology is making imbeciles out of many of the current generation. True story. I hope you find this as amusing as it is sad. On the way home from work recently, I called and ordered pizza from a place near my house. I pulled through the drive thru window and a teenage girl opened it, asked my name, and then told me the total was $13.75. I handed her a 20. Now, my 10 year old could have made that change in his head, without pause, and without even really thinking about it. She took the 20, walked over to the cash register, and opened it. She stood there a minute in thought, took out some money, then put it back and closed the drawer. She stood there a minute longer, then opened the drawer again, thought about it some more, then closed the drawer yet again. Apparently the computer on the cash register was broken or something. At this point, she reaches under the counter and pulls out a calculator, which she proceded to punch numbers into for a good two minutes. And finally she opens the drawer and takes out my six dollars and a quarter. I feel afraid for our future when a High School junior or senior can't make simple change.
  2. Don't complain. Squeaky wheels are going to eventually ruin vb.Net.
  3. I get Visual Studio Magazine. I like it a lot, but it's pretty thin for the price, IMHO.
  4. Here's another good one http://www.irritatedvowel.com/Programming/Standards.aspx
  5. Will we be able to remove these "things" by removing Microsoft.VisualBasic and/or Microsoft.VisualBasic.Compatibility ? If so, who cares... If not, kudos to Microsoft for continuing to screw up what could be a very good language... :-\
  6. New forum software. Maybe some ads. No popups.
  7. And there's no reason in the world to use Call.
  8. Dim tbl As New ADOX.Table() Dim col As New ADOX.Column() Dim cat As New ADOX.Catalog() 'Engine Type=4 is Access 97 and a value of 5 is Access 2000 cat.Create("Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=d:\My Documents\db10.mdb;" & _ "Jet OLEDB:Engine Type=4;") tbl.Name = "NewTable" col.Name = "DateField" col.Type = ADOX.DataTypeEnum.adDate tbl.Columns.Append(col) col = New ADOX.Column() col.Name = "Address2" col.Type = ADOX.DataTypeEnum.adVarWChar col.DefinedSize = 20 col.Attributes = ADOX.ColumnAttributesEnum.adColNullable tbl.Columns.Append(col) col = New ADOX.Column() col.Name = "Age" col.Type = ADOX.DataTypeEnum.adInteger col.Attributes = ADOX.ColumnAttributesEnum.adColNullable tbl.Columns.Append(col) cat.Tables.Append(tbl) cat.Tables("NewTable").Columns("Address2").Properties("Jet OLEDB:Allow Zero Length").Value = True
  9. http://www.vbwm.com/resources/default.asp?page=TutorialsVBNET
  10. .Net doesn't do casting for you like previous versions.
  11. .Net is the latest version of Microsoft Visual Basic, Visual C++, ASP, ADO, etc, etc, etc. Also comes with C# and J#.
  12. Anis, with the exception I noted above.
  13. If you want to use .Net, unmanaged c++ doesn't require the .Net framework. I think.
  14. c# also requires the .Net framework.
  15. Use c/c++
  16. Try telling us what it is or isn't doing. Error message? "not returning the results it is suppose to" isn't very enlightening.
  17. NUMBER may be a reserved word. Put brackets around it. e.g. [NUMBER]
  18. eek! I'm in the .Net forum aren't I. Sorry. images/smilies/dismayed.gif
  19. Try: If IsNull(datepicker.value) Then
  20. Famous last words. Vb.Net is very different. Show us the code.
  21. Dim X As frmFirst = New frmFirst() X.Show()
  22. What exactly do you mean "connect to an IIS server"? What did you plan to do once you "connected" to it?
  23. vb.Net is much 'tighter' than previous versions of vb. This is a good thing. When you run across things that vb.Net doesn't let you get away with anymore, keep in mind it was more than likely a bad thing to be able to do in the first place.
  24. Is Nothing is for objects. Like Thinker said, you could never CStr an object in VB6. I really don't get what you're trying to say either.
  25. You don't create ActiveX controls with .Net period.
×
×
  • Create New...