Search results for query: *

  1. I

    Simple Chat+ Picture Transfer

    I am not sure why are you using a Timer. If you want to implement a chat system then I suggest using a loop and a ManualResetEvent to manage the send and receive actions or start two separate sockets; one for receiving and one for sending simultaneously on different ports. I prefer to manage...
  2. I

    UDP Hole Punching -- NAT Traversal

    I see this post is old but has it been answered?
  3. I

    Question Are Web Services always running as 1 single instance or do they work like web pages?

    Thanks Sabrina and John, I finally got it down pat. Your help was great. It wasn't difficult at all after I finally wrapped my noodle around it. :)
  4. I

    Question Are Web Services always running as 1 single instance or do they work like web pages?

    Thanks JohnH. Years ago I tried to write a windows service and I never really understood what I was doing, maybe because I never really had a reason to write one but I'll give it a shot. I read somewhere about SQL being able to send alerts automatically. Is this so?
  5. I

    Question Are Web Services always running as 1 single instance or do they work like web pages?

    I have never used Web Services before so I don't know much about how they work as far as being instantiated so here is what I need and will a web service do this for me? My web site will send out notifications to users based on alerts they setup in their profile. The notifications are text...
  6. I

    Question How to Wake the computer from Sleep?

    Yeah, me either. That's what I'm trying to figure out. I want the .NET way of doing this or some info on how to build a library harnesses the Win32 myself.
  7. I

    Question How to Wake the computer from Sleep?

    This is close to what I am looking for but I am building a personal alarm clock as a small project and assuming that my computer goes into Sleep or Hibernate mode over night I still need the clock to wake the computer and then go off. With WOL (Wake on LAN) it appears I can awake a computer...
  8. I

    Question How to Wake the computer from Sleep?

    I have seen people blog about VB6 code that can wake a computer from hibernate but I have yet to see how to do this with .NET. Can anyone please help me with this? I simply want to wake the computer from sleeping at a designated time.
  9. I

    Am I right when i say this?

    This all depends on the type of Object you are using. When the object is referenced then all variables are pointing to the same location in memory if the Object is not referenced then it is not. The most luck you may have is to share the same Object from a memory pool. Its all a little...
  10. I

    Sending and Receiving Code via Textboxes

    I want to know how to send and receive code via the textbox from and to users. I know there is a way to do it but I forget what I have to change in order to make it work. Basically, ASP.NET will fire an error if code is being passed back to the server or if you try to send code to the user it...
  11. I

    Any good PayPal articles out there?

    Check this link. I found this PayPal IPN Class Library tons helpful for me.
  12. I

    Preserve page line with Wizard

    Yes that worked perfectly. I didn't know that Property even existed. I have been using other methods. Thank you.
  13. I

    Auto update

    Thanks John. That sucks though.
  14. I

    Sorting Files in Directory.

    If the file names are all numeric and you are sure there wil be no letters then just read out all the files into a new array. Then use the String.Remove() function to get rid of the file extension and place the file names into a new array. Bubble sort the new array by converting the strings to...
  15. I

    Auto update

    Can I customize the ClickOnce feature to make installations like I can with the Setup Projects? I really like the ClickOnce feature but I still have not used it b/c I havn't found a way to really customize the setup process. I havn't dug very far into either but maybe some one here has.
  16. I

    Preserve page line with Wizard

    What is the simplest way to preserve the users location on a webpage during a postback. I am using the Wizard on my page and for every post back the page starts back at the top. The user has to scroll down the page to get back the wizard again. I want the simplest way to preserve their...
  17. I

    Auto update

    This is probably a stupid questio,n but can you use the auto update feature without using the ClickOnce as your setup process? I prefer to add a setup process to my software b/c it is more flexable. That is unless I don't fully understand ClickOnce. I just think ClickOnce is too limited.
  18. I

    Checkbox AutoPostBack not working

    Here is my Checkbox Attribute.... <asp:CheckBox ID="CheckBoxResetRegisteredMember" runat="server" Text="Registered Member" AutoPostBack="True" /> Here is the event handler.... Protected Sub CheckBoxResetRegisteredMember_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs)...
  19. I

    Checkbox AutoPostBack not working

    I have added two checkboxes to my form and a button called update users. I want to change usre privedges by checking or unchecking the appropriate checkboxes. I recently decided it would be better in my current situation to cause a post back on each checkchange so I set the AutoPostback for...
  20. I

    Playing a video clip on a form

    Yeah, that is an issue with DirectX. Here's what you have to do. Open your project. On the Visual Studio toolstrip click 'Debug' Then choose 'Exceptions' Expand 'Managed Debugging Assistants' Find 'Loader Lock' about 3/4 the way down the list and un-check it. It will work fine but you will...
Back
Top