Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. Create? Well you can use the flexgrid. But the datagrid is more powerful.
  2. I'm guessing you're refering to Client Side Script ? Because CSS usually stands for Cascading Style Sheets.
  3. Some good online stuff... http://www.xtremedotnettalk.com/showthread.php?s=&threadid=69808
  4. You need to place your OR inside the quotes... .DefaultView.RowFilter = _ "SELECT Description Like '%" & txtCriterial.Text & "%' Or " & _ "[Vendor] like '%" & txtCriterial.Text & "%' Or " & _ "Notes like '%" & txtCriterial.Text & "%'" & _ "from PartMaster WHERE ," & _ "(" & field1 & " = '" & criterial & "')"
  5. If it was possible to code a wizard that could convert VB6 to .NET without error, don't you think that MS would pay tens of millions of dollars for. Such a product cannot be created!
  6. VBerLite, there is no easy way out, a click of a button will not be the end-all solution. The wizard was there for simple tasks and nothing more. Oh and by the way, it's not written by Microsoft.
  7. You have a couple of choices; build your own or buy one. Either way, your statement "...the datagrid control from the .net framework sucks so much..." is really uncalled for. You seem to have found several solutions, so what exactly are you asking.
  8. I doubt it has anything to do with registering VS.
  9. How else would you pronounce it? :)
  10. Why did Microsoft do this?. It may be redundant to include JET for 2.6/2.7 because the JET version had not changed and most people only need 2.5 for Access while 2.6/2.7 will be used primarily for SQL Server. Maybe. :)
  11. No that's it, you'll have to include JET 4.0 along with MDAC 2.6/2.7. Look on the bright side 2.6 and 2.7 are smaller files than 2.5.
  12. Topics include: COM, P/Invoke (e.g. Win32 API), marshaling, distributed applications, VBA and interacting with office apps
  13. What date type is "CPUTime" in the database? Are you sure it's Integer?
  14. You can use 127.0.0.1 instead of the machine name, that being said I am closing this thread as I don't see a valid reason to programmatically changing it.
  15. You should be using ... if strInputDate.length > 0 then
  16. If you rename a clients' localhost are they not going to peeved???
  17. It is possible but not recommended, you can get stuck in an endless loop and more. Why can't you manage without it?
  18. If you can post the code someone may be able to help.
  19. Bit is the way to go.
  20. Yeah, I would say maybe in the future, for now we don't have enough posts to seperate XML and database.
  21. Robby

    Report

    I don't know what options are available for the standard version. But the version shipped with VB6 was quite outdated and I don't recommend it.
  22. Does the project Build as expected (prior to the deployment project) ?
  23. You mentioned Shell command, do you want to start an external app? If so, try this... Dim WithEvents myP As Process Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load myP = Process.Start("c:\winnt\system32\notepad.exe") myP.EnableRaisingEvents = True End Sub Private Sub myP_Exited(ByVal sender As Object, ByVal e As System.EventArgs) Handles myP.Exited MessageBox.Show("Application Exited") End Sub You can rename a file by making a copy then delete the original. Dim f As System.IO.File f.Copy("c:\Test.txt", "c:\testing.txt") f.Delete("c:\Test.txt")
×
×
  • Create New...