Search:

Type: Posts; User: Wokawidget

Page 1 of 13 1 2 3 4

Search: Search took 0.93 seconds.

  1. Re: Badger Messenger, an MSN clone that uses the MSN Network.

    Hi,

    The source code is attached to this thread.
    However....MS discontinued the MSN protocol a good few years back. By doing this it made this messenger source code obsolete overnight.

    cheers,...
  2. Replies
    0
    Views
    1,822

    Windows Service and Install Shield LE

    The old deployment package projects with VS allowed me to install a windows service.
    I can't seem to find how to do this with Install Shield 2011 LE.

    If this not possible?
    This makes the LE...
  3. Replies
    8
    Views
    1,936

    Re: Is there a MySQL group ?

    *thread moved to Database Development section*
  4. Replies
    3
    Views
    1,261

    Re: VS 2010 Excel Math Form To App

    *thread moved to the VBA section*
  5. Replies
    7
    Views
    1,174

    Re: Database Error, PC dependent???

    I am assuming you're accessing a local AccessDatabase.
    Is the connection string correct for those databases and does the database in the connection string have that table?

    Woka
  6. Replies
    7
    Views
    1,174

    Re: Database Error, PC dependent???

    Hi,

    I have moved this thread into the VB6 section as the ASP.NET section is for Web Development in the .NET programming languages, not vb6.

    cheers,

    Woka
  7. Re: Simple, but functional and VERY effective graph control

    You may want ton post that into the VB6 forum section.
    More people will be able to see it.
    I have no idea what that code does as I have never dealt with modem messages...but others may have.
    ...
  8. Re: Simple, but functional and VERY effective graph control

    Np. :)
    If you have any further questions then don't hesitate to post.

    thanks.

    woka
  9. Re: Simple, but functional and VERY effective graph control

    That is my code to get it to produce random graph data using random numbers.
    I probably made it more complex than needed.
    To post a screen shot click on the Go Advanced button at the bottom of this...
  10. Re: Simple, but functional and VERY effective graph control

    Hi..can you post a screen shot of the error?
    The sample program should work....does work.

    WOka
  11. Re: Simple, but functional and VERY effective graph control

    Looks at the sample code project. This has a demo of plotting real time data.

    Woka
  12. Re: [RESOLVED] Threads being moved without indication of movement

    Hi, that would be me :(

    I was under the impression that people subscribed got a notification.

    I'll add "moved" to the threads in future.

    Is there no way of getting this post to be added...
  13. Re: New code for simulating multithreading in VB6...

    While I do love my vbGateway code...it's a little bit outdated now thanks to .NET.
    You know you can do in .NET in a few lines of code what this entire project does?

    Woka
  14. Re: New code for simulating multithreading in VB6...

    Wow. Never seen than before.
    I have never really done any work in anger with manifest files and vb6 I am afraid.
    But why it should cause an error of that nature is a bit of a mystery.

    Can you...
  15. Replies
    17
    Views
    2,334

    Re: [RESOLVED] While(true) Loop To Fast?

    The following code also stored the new codes in a HashTable and checks for the key to see if the code already exists. The code is only added if it doesn't exist.


    private void...
  16. Replies
    17
    Views
    2,334

    Re: [RESOLVED] While(true) Loop To Fast?

    Why would you want to generate code in that way?
    That's incredibly resource hungry.
    Your CPU will peek at 99% until you stop generating codes unless you throttle it back using Thread.Sleep(10) or...
  17. Replies
    1
    Views
    1,223

    Data Access Layer using LINQ question

    I have avoid LINQ for a good couple of years now. probably because I don't know much about it...T-SQL has worked perfectly for me for the last 20 years so why change...anyways. I need to write a new...
  18. Replies
    32
    Views
    81,658

    Re: Simple example on how to skin a form

    This is a VB6 example. NONE of the code here applies to .NET.
    .NET allows you to skin forms much more easily and effeciently.
    You will need to ask this is the relevant .NET section.

    Woka
  19. Replies
    72
    Views
    174,720

    Re: Validate Login against Active Directory

    Some examples of function that could return success or any other variable will not always have a try catch block.
    I refer back to my last post about maintainability of multiple exit points.
    I think...
  20. Replies
    72
    Views
    174,720

    Re: Validate Login against Active Directory

    Framework 3.5 wasn't out when I 1st created this thread ;)
  21. Replies
    72
    Views
    174,720

    Re: Validate Login against Active Directory

    One example of this would be if I wanted to log the failure.

    private bool ValidateActiveDirectoryLogin(string domain, string username, string userPassword)
    {
    bool success = false;
    ...
  22. Replies
    72
    Views
    174,720

    Re: Validate Login against Active Directory

    I agree with the secure binding.

    The AccountManagement namespace contains objects like Group and UserPrincipal...these are just wrappers around the DirectoryEntry object.
    I prefer having the...
  23. Replies
    6
    Views
    1,468

    Re: SQL Query to search a properties table...

    also...looking at the query.
    For every user there is the following code gets called:


    SELECT 1
    FROM UserProperties
    WHERE UserID = UP.UserID
    AND PropertyKey =...
  24. Replies
    6
    Views
    1,468

    Re: SQL Query to search a properties table...

    SELECT UP.UserId
    FROM UserProperties UP
    WHERE UP.PropertyKey = 'FIRST_NAME'
    AND UP.DataValue = 'Woka'
    AND Exists(
    SELECT 1
    FROM UserProperties
    WHERE UserID =...
  25. Replies
    6
    Views
    1,468

    Re: SQL Query to search a properties table...

    That's an OR statement...I want and AND :(
  26. Replies
    72
    Views
    174,720

    Re: Validate Login against Active Directory

    Just thought I'd add the following code change.
    The Directory Service objects need to be disposed of:


    Private Function ValidateActiveDirectoryLogin(ByVal domain As String, ByVal username As...
  27. Replies
    32
    Views
    81,658

    Re: Simple example on how to skin a form

    You would need to store the numbers as seperate images, with a purple background color.
    Then every minute, using a timer, add the required images to a picture box and positiojn them correctly. then...
  28. Replies
    6
    Views
    1,468

    SQL Query to search a properties table...

    Hi,

    I have two tables...Users and UserProperties

    UserProperties has 4 columns:

    UserPropertyId INT
    UserId INT
    PropertyKey VARCHAR(50)
    DataValue VARCHAR(MAX)
  29. Re: Is Wokawidget's DLL version of Winsock Vista/7 compatible?

    Hi,

    I may not login often...but I check emails and PM's everyday :)
    What issues are you seeing...err msg?

    I have no way of testing this at the moment, and I am off on hols tonight.

    cheers,...
  30. Replies
    32
    Views
    81,658

    Re: Simple example on how to skin a form

    Hi,

    Sorry I don't have time.
    Plus a million other people beat me to it :D

    Here's a link Hack once posted for some code on CodeProject.com.

    Code is simple and easy to change.
    It could do...
  31. Replies
    32
    Views
    81,658

    Re: Simple example on how to skin a form

    Yup. this is for VB 6 (Visual Studio 6).
    VB.NET is essentially VB7, and has an entirely different language structure.

    This VB6 project uses APIs that can be messy and complex.
    Using VB.NET...
  32. 2.0 Creating new AppDomains...how many is too many???

    Hi,

    I need to create seperate AppDomains to dynamically load assemblies.
    But...how many AppDomains is too many?

    Is it ok to create 100? Is 1000 too many???
    I am trying to work out what the...
  33. Re: MSN Messenger Style Systray Notification Messages

    go for it. I don't mind.
    Although the code itself wouldn't need to change.
    You just need to write a few extra apps that reference the popup dll.

    Woka
  34. Re: MSN Messenger Style Systray Notification Messages

    put a timer on a form. every x seconds the timer queries db. if a request is there then call the popup code.
    just put the code from the command click in a seperate procedure.

    Woika
  35. Re: MSN Messenger Style Systray Notification Messages

    Hi,

    This functionality I am afraid is not out of the box.
    The code that displays the popup must be on the target machine...this is just the VB6 way.

    There are a few ways you could implement...
  36. Replies
    92
    Views
    263,250

    Re: [Vb.Net] WebCam Class (ICam)

    Any errors?
    Works fine on my test pcs.
    Have you got the shutter/cover open on your web cam?

    Woka
  37. Replies
    92
    Views
    263,250

    Re: [Vb.Net] WebCam Class (ICam)

    Motion Detection:

    I wrote some motion detection code to catch the dog dumping in my front garden :)

    Attached is the source project for this.

    Run it. Click button 1 to start camera.
    The...
  38. Re: Badger Messenger, an MSN clone that uses the MSN Network.

    errrr...

    1) VB6 can only be compiled in 32bit form
    2) A lot of API is required for added functionality but in .NET this is wrapped up in nice simple objects
    3) Visual Studio UI has limited...
  39. Thread: Msn!

    by Wokawidget
    Replies
    33
    Views
    12,927

    Re: Msn!

    In the last few months this MSN protocol is not supported by the MSN network.
    See the 1st post in the following thread:
    http://www.vbforums.com/showthread.php?t=325908

    Cheers,

    Woka
  40. Re: Badger Messenger, an MSN clone that uses the MSN Network.

    Yes, that definately looks like the issue.
    The 1st call to the MSN service works and a response is returned...the 2nd msg sent is the one i posted above. The MSN service simply does not reply to...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width