Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. Do you mean convert existing code or run/use a .NET DLL in VB6?
  2. Sorry I had it in mind that there was a Throw New in the Catch block, then it would not reach the last line
  3. In the first one the Finally block is always run. The second one will not if there's an error
  4. It's your choice. But doing it at runtime is much easier as well as scalable.
  5. Yeah, use the ContextMenu.
  6. Oh man that's true, I forgot about the e arg. D'oh!
  7. You can do something like this... Private Structure POINTAPI Dim X As Integer Dim Y As Integer End Structure 'place the following in the MouseMove event... Dim p As POINTAPI p.X 'this is your X position p.Y 'this is your Y position
  8. Instead of simply Encapsulating your code, why not divide your project into let's say Data Layer, Business Logic and UI. The data layer can handle all of your data access without any knowledge of the other classes, the business logic can inherit or instantiate from the data layer and so on.
  9. or maybe this http://www.bassicsoftware.com/popup.aspx?b_id=67
  10. Maybe this will help...http://www.4guysfromrolla.com/webtech/053001-1.shtml
  11. you can simply set focus on any other control, and if there's only one control on the form then focus on the form itself... me.focus()
  12. Whatever, use any character you want.
  13. I didn't try either one, but you can test this one out.. 'ds being your dataset ds.Tables(0).ImportRow(ds.Tables(0).Rows(Datagrid1.CurrentCell.RowNumber))
  14. You can try something like this to copy into an array... Dim SomeArr As Array dataset1.Tables(0).Rows.CopyTo(SomeArr, Datagrid1.CurrentCell.RowNumber)
  15. which web explorer control? and what right button ?
  16. Do you mean you want to .... On a WinForm display data coming from a database? If so what type of controls, textboxes datagrid etc..?
  17. Wow, these statements are just false "if your'e not using a mdi form well .net framework is slow"
  18. Engine252, how did you come up with this? .... ".net framework is to slow to add this functionality to a richtextbox"
  19. I wouldn't allow special characters in nicks, or at least pipes, they are least used.
  20. Instead of Exit Sub you should structure your If statement properly.
  21. Store the values in one big string and use some delimiter(comma or pipe) to later read the values. (split into an array to read)
  22. Robby

    shopping cart

    You can get some ideas from IBuySpy Store. Download the source here... http://www.asp.net/Default.aspx?tabindex=7&tabid=41
  23. You don't need any of the vb files, only aspx, web.config and the DLLs in the bin. You need user ASPNET to have permissions for that application.
  24. That's done through tools like Terminal Services, PC Anywhere or Cytrix. To build your own would be quite a task.
  25. On a web form you can use a Datalist control, on a WinForm you can create your own. Since you want to display one record at a time vertically this would be quite easy using a collection of textboxes and labels.
×
×
  • Create New...