Jump to content
Xtreme .Net Talk

natarius

Members
  • Posts

    11
  • Joined

  • Last visited

natarius's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. hi, for licensing reasons i want to limit my application to only run on one cpu! how can this be done? thx & greets natarius
  2. hi, how can i use a usercontrol made with vb.net inside vb6?? as vb6 only accepts *.ocx files, what do i need to do? thx & greets matthias
  3. seems like i found the solution: i added a timestamp row to every table, now it works!
  4. no, its only me trying to update/delete the rows!
  5. hi, i have some problems with my msde/sql express database located on an inet server (p4 2,4ghz, 1024mb ram, 100mbit broadband connection). i have about 10 clients out there which connect every 15 minutes do the db to do some processing...mostly performing select commands which seems to run fine! i have one admin tool to fill the db with records here at my office and sometimes when i am performing an update or insert command it just timeouts...i then have no chance to edit records! just a few records seem to be blocked, because some work like always!! sometimes after a few minutes everthing is ok again...sometimes it takes hours what is causing this? pleas help greets matthias
  6. because i am developing a multimonitor touchscreen application which needs to be responsive all the time! so when for example i fill a listview with images on one form/screen all the others stay responsive!
  7. hi, i would like to build an watchdog for my app, so that if my main app crashes (freeze, runtime error msg, etc ) the wacthdog restarts it. so my problem is how to detect if my app has crashed! system.diagnostics doesn't provide any functions to detect if an process has crashed! i was thinking about writing some timestamp into a file and if after a period of time there wasn't a update, the watchdog will asume that the app has crashed! does anyone here have a better idea? thx & greets matthias
  8. thx, application.run does the trick
  9. hi, i would like to know how to run a complete form with its controls in a seperate thread as my main thread!? i have test the following, but it does not work: Imports System.Threading Public Class Form1 Dim thread As Thread Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load thread = New Thread(AddressOf startform) thread.IsBackground = True thread.Start() End Sub Private Sub startform() Dim newform As New Form2 newform.Show() End Sub End Class it only works like this: Imports System.Threading Public Class Form1 Dim thread As Thread Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load thread = New Thread(AddressOf startform) thread.IsBackground = True thread.Start() End Sub Private Sub startform() Dim newform As New Form2 newform.Show() do Application.DoEvents() loop End Sub End Class so i simulate application.run with a doevents loop...is that ok, or is there a better way?
  10. hi everyone, i have read at this ftp://ftp.steinberg.net/Download/General_Documents/Multiprocessing_Tech_Info.pdf article, that there are some kind of different thread modes! static and dynamic!? So static threads are hardwired to one cpu while dynamic threads can jump dynamicly between cpu's! how does that work and how can i do this with vb.net!? i couldn't find any setting in the thread class like this! or is it just a marketinh hoax?! thx & greets natarius
  11. hi, what i need to do seems to be simple but i dont get it! i know vb.net well but have never done something with asp...so, here's my question: how can i make a simple asp page which shows my wan ip (just like http://www.whats-my-ip.com does) thx & greets natarius
×
×
  • Create New...