Search:

Type: Posts; User: ImDaFrEaK

Search: Search took 0.03 seconds.

  1. Re: accessing a form and its controls VB.NET 2013

    Ok. Quick update!! I am terribly sorry. Another reason doing it on your phone is awful. I'm looking at the snippet and it's terribly flawed. I'm fixing it now but still on my phone so...Go back...
  2. Re: accessing a form and its controls VB.NET 2013

    As mentioned earlier a form and a window are different. I am assuming you're using WPF by your code. I tried to explain but maybe I wasn't clear so I apologize. When I said all derive from...
  3. VS 2013 Re: Having a problem with Packet Length Prefixing TCP

    I'll look at it and ill send you a library I wrote also. I happen to know exactly what you're trying to do. I wrote iSam found at tripleg-3.com. The program also allows remote images from a users...
  4. VS 2013 Re: Having a problem with Packet Length Prefixing TCP

    Ahhh.... Ok. Well that's probably your problem. Here's what's happening. I haven't looked at the dropbox link sir. I see it though.. But check it out. When you send a message just prefix the...
  5. VS 2013 Re: Having a problem with Packet Length Prefixing TCP

    Tell me exactly what you're passing back n forth and I'll write you a good generic template well documented. I'll post it here for others also.

    I can also send you a good library I've written...
  6. VS 2013 Re: Having a problem with Packet Length Prefixing TCP

    TCP still transfers in packets. If I sent you a file that's (and I'm making up numbers for clarity) 1000 bytes and each packet was 100 bytes. Then you'd need to receive 10 packets before having...
  7. VS 2013 Re: Having a problem with Packet Length Prefixing TCP

    Ok, I looked and I'm following but I'm also a little lost. I'm not completely sure what you're doing with the two SocketAsyncEventArgs or the two Booleans in the array list. hmmmm, I apologize but...
  8. VS 2013 Re: Could not detect my File Folder [Fix This Line]

    I read your other posts. You have some sort of "thing" about being always right and knowing best. Well, I will repeat myself one last time. The name of the folder here and the appendage is indeed...
  9. VS 2013 Re: Could not detect my File Folder [Fix This Line]

    You are totally not reading anything. The folder is the constant and the appendage to the file is the constant. The path is not. Further, example.txt isn't the name. He wants folder x, and file...
  10. VS 2013 Re: Could not detect my File Folder [Fix This Line]

    I'm puzzled by your response would a constant make a good file path/name. Of course it would and it is used all the time. And regardless of readalltext you still need the path / file. If you look...
  11. Re: What am I doing wrong delegate label, not updating once I moved functions and sub

    Oh, and I just saw you are making a reference possibly. It's hard to understand without seeing more. But I noticed it was shared. This does not associate with an instance of the class. And if...
  12. Re: What am I doing wrong delegate label, not updating once I moved functions and sub

    Try setting the delegate as a field.

    Delegate Sub SetTextCallBack(...parameters)

    Then reference it with a routine.

    Sub CallBack(...same parameters)

    ...do your work
  13. Re: What am I doing wrong delegate label, not updating once I moved functions and sub

    It may have something to do with the thread you're using. However, if I may suggest, you need to primarily attempt to keep all user interface work in the form or window code file and keep all...
  14. Re: Save serialized data to file “C:\FuncRecords… (xml)

    As mentioned you need to specify where you are saving. You are using current directory and in Windows it saves these in various locations depending on the apps privileges. Most commonly the users...
  15. Re: accessing a form and its controls VB.NET 2013

    Here's the thing. In WPF make sure you're using Labels and TextBlocks appropriately. TextBlock is preferred, more light weight, but Labels offer other functions. But to answer your question you...
  16. VS 2012 Re: Confused on how to store data for new knowledge base app

    No. I agree with kleinma. However, I suggest a quick understanding of SQL if you don't have any. As he mentioned you don't need to write any SQL statements. Add a SQL database to your project in...
  17. VS 2013 Re: Having a problem with Packet Length Prefixing TCP

    Please post some code. I can help because I have a good understanding of TCP/UDP but without something to look at I can't. There are several paths I could take to answer this question is why I need...
  18. VS 2012 Re: [Help]How to Click button and capture popup

    I can't see the screenshot. The quality isn't good on my phone. JavaScript offers events to become aware of popups and methods to understand where the popup derived. The browsercontrol also offers...
  19. Replies
    3
    Views
    844

    VS 2013 Re: Convert to VB.net code

    Might also recommend created a custom library in C++ and just referencing it to get what you want. I didn't read the code but as they've mentioned it may be easier to just re-write it all together...
  20. VS 2013 Re: Could not detect my File Folder [Fix This Line]

    Let me first criticize you some only to make you better.
    Don't use strings literal like you're doing. It's common but overall sloppy and you'll thank me later if you stop. Do this:

    ''Path,...
  21. Replies
    5
    Views
    1,881

    VS 2013 Re: Convert this to VB.net???

    DirectCast(Int16, SomethingElse)
    Convert.ToInt16(SomethingElse)
    CType(Int16, SomethingElse)
    CShort(SomethingElse)

    If you are getting an overflow it is because the value isn't a short obviously...
  22. Replies
    6
    Views
    9,286

    Re: Windows Service - Set Service Login

    I have installed the service, it wasn't working the way I intended so I used visual studio install the new service but the install failed saying that the service already exist. It went through an...
  23. Replies
    6
    Views
    9,286

    Re: Windows Service - Set Service Login

    Saved me a headache if even 5 years old. Thanks.
  24. Thread: udp?

    by ImDaFrEaK
    Replies
    10
    Views
    2,983

    VS 2010 Re: udp?

    Thanks jmcilhinney. Very clear and usable responses to this thread. I am just learning UDP and TCP and I appreciate how you helped Waxy here. Between you both, are there any tutorials or books...
  25. Replies
    109
    Views
    6,960

    Re: Anyone going to buy a Windows Phone 7 Device?

    Got mine yesterday and I had high hopes for this phone. With all honesty it has exceeded my hopes. This phone rocks, simply rocks. Nothing else to say. Coming from iPhone, Android, and WM 6.5...
  26. Re: [RESOLVED]Capturing mouse click event in vb.net(Thanks so much Mr.Polite)

    Conctact me if you need help with Hooking please... I have written and taught how to perform Low Level Hooks in VB.NET and C# and can explain clearly the entire process as well as distribute...
  27. Re: VB - mciSendString - audio/video playback / video splashscreen etc from resource file

    NP, i'll dig up the working version i made and send it to you via email with source code. I read my comment above and realized that I sounded FREAKIN COCKY and i apologize for that. Thanks for not...
  28. Re: VB - mciSendString - audio/video playback / video splashscreen etc from resource file

    EDITED: Text removed by ImDaFrEaK because I wrote some arragant crap here that was kinda rude.
Results 1 to 28 of 28



Click Here to Expand Forum to Full Width