Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Leonos

    Server timeout after invite receive

    Due to NLB our system has two IP's bound to one nic. 192.168.10.50 and 192.168.10.52 We receive the invite on 192.168.10.50 and apparantly this is forwarded to 192.168.10.52 and it's recognized by our voip. Then our voip on 192.168.10.52 responses to the invite, but gets a 504 timeout. the...
  2. Leonos

    messagebox from service

    I have no idea :) i use Dev-C++ and don't have much experience. I have quit searching for this answer, whereas it seems not possible to do this in vista.
  3. Leonos

    progressbar in vista from service

    I'm developing a printerdriver and while printing it should show a progressbar. This progressbar is launched by the print spooler service. In WindowsXP I have no problems, but due to the Desktop Sessions security in Vista, it isn't shown there (it is shown in the Session0 desktop). How to fix...
  4. Leonos

    messagebox from service

    In XP I have no problems in displaying messageboxes from the printer spooler service. But in Vista it's giving me a hard time. I managed to start an application from this service with the imporsonate and createprocessasuser function. But what about messageboxes (or processbars) ? please help...
  5. Leonos

    spoolsv.exe and dialogs

    I have a virtualprinter driver where in WindowsXP I can see a progressbar and after printing is done, an application is launched. The printerdriver is a dll file. Now on Vista i have the problem that the dialogs are not show, the interactive desktop service tells me that spoolsv.exe is not...
  6. Leonos

    Convert B&W image to 1Bpp

    Hi there, I found a way of doing this. Here the code: private void ResaveTiffBlackWhite(FileStream fs, string destPath) { // FileStream fs = File.Open(sourcePath, FileMode.Open, FileAccess.Read); Bitmap srcBmp = new Bitmap(fs);// (Bitmap)Bitmap.FromStream(fs)...
  7. Leonos

    Convert B&W image to 1Bpp

    I have made a converter that converts a colorred image into a black and white image. This converter also fakes grays by filling these with black/white/black/white etc. This produces a very decent black and white picture, but it is in 24bpp. Now I want to fax that image and need to convert it...
  8. Leonos

    What Is Active/Passive Failover Clustering?

    But you're screwed if your harddisk fails or if the database comes corrupt. Then your downtime will enormous ! I'd go for replication.
  9. Leonos

    Cleaning log and replication

    I have done some testing with this case and it seems that it doesn't matter. I stopped the logreader for an hour, then lots of data was added to the publishers database. The I flushed the log with the command above. Then I started the logreader and it did read the correct amount of commands...
  10. Leonos

    Cleaning log and replication

    I have a merge replication setup, but my log-files are still growing. Now I have read about the query BACKUP LOG [db] WITH TRUNCATE_ONLY (followed by shrink) that will clean these logs. But...is the replication affected by this cleanup. With other words, does the replication-logreader use...
  11. Leonos

    Open password protected word with Interop

    I want to print Word documents with the help of the office.Interop.Word library. So far I had no problems, but today i received a password protected file. Now my application hangs on opening the word file. How can I check if the file is password protected or is there a way to generate an...
  12. Leonos

    Replicated table corrupt

    What wil happen to the subscribers table when the publisher table becomes corrupt, when using a transactional replication every 5 minutes ??
  13. Leonos

    paging problem with firefox

    I have a page which a textbox that is used to filter values from a database. The results are returned in a gridview with paging. In IE I have no problems, but in firefox only the first page is displayed correct. When I click on another page (paging) in firefox, the value of the textbox is...
  14. Leonos

    onDisconnect with firewall

    Hi, Sometimes my main.asc does not detect the onDisconnect of some of my clients. It turns out that their firewalls is blocking this. (you can test by starting the flash application and then enable the windows firewall with no exeptions). I can't rely on the ping, because most clients keep...
  15. Leonos

    site reset after dll update

    Hmm, I found that soms FCN monitor is watching all my directories for changes. I found one solution which I do not prefer. That is by creating the usual web-directory for your website. Than the FCN monitor watches this directory. Meanwhile, we sneaky link this directory to another, through some...
  16. Leonos

    site reset after dll update

    Is there a way to prevent my website to completly reset, after I have uploaded a compiled .dll file ? I have build a large website with a number of different directories and the compiler is set to create .dll files for every directory. But when I have updated the code for directory A and I...
  17. Leonos

    max changes in default replication

    I'm using sql2005 with transactional replication. I'm using the default agent profile and it's scheduled to update the subscriber every minute. There are not that many rows / colums that are changed every minute now (60-90) , but that may grow soon. At the subscriber I will need this data for...
  18. Leonos

    sql 2005 merge replication

    I'm using sql2005. I'm ignoring the error right now, because the replication does work fine.
  19. Leonos

    sql 2005 merge replication

    Hi, I have the same problem here. The merge actions seem to work, but this message makes me wonder if everything is configured correct. Anyone ???
  20. Leonos

    'Optimised for 8 Concurrent Users' - What does this mean?

    Does this limitation also count for an update statment. Thus an update statment is count as a concurrent query ? Is do get timeouts when I have reached this limit, but when another query has finished, the waiting query / update will succeed.

Part and Inventory Search

Back
Top