Search:

Type: Posts; User: masfenix

Page 1 of 13 1 2 3 4

Search: Search took 0.19 seconds.

  1. Re: [2005] Launching another .msi from within .msi!?

    Maybe you can use the custom scripts pre intsall, or post install. And write a simple script to launch the second msi.
  2. Replies
    10
    Views
    1,861

    Re: [2008] Imageshack uploader

    I have a chsarp library that i found off the net, you can use that (or convert to vb)

    the class can be found here: http://skimpt.googlecode.com/svn/trunk/Platters/classes/webpost.cs

    and to use:...
  3. Replies
    3
    Views
    1,988

    Re: [2008] Convert MSIL to binary?

    Theres no free software that will do this. And second its not binary. Binary is what your CPU works in.

    C++ programs are transalted into machine code. Machine code is one instruction at a time....
  4. Re: screen shot captures, but program invisable

    i collected code over the internet to make good working open source system which can be downloaded at :

    http://code.google.com/p/skimpt however its in c#.
  5. Replies
    20
    Views
    1,411

    Re: [2005] Protect My Project

    Theres a simple License thread in the codebank. You should use that.

    But to add a note: You can't really protect your .net applications unless you spend the money. Anyone could decompile it back...
  6. Re: [RESOLVED] using .indexof error... has me beat.

    Adding on to shaggy's post, you can acheive your "mutli dimensional array" effect with a dictionary. It's got similar methods to the List class, and it works on a 'key' / 'value' basis.
  7. Replies
    8
    Views
    798

    Re: [2008] image overlay

    Actually I figured it out. Its not relaly text to say. Basically what it is is that it grabs a screenshot of the desktop. The user is able to use a "transparent form" as a camera to select a...
  8. Replies
    8
    Views
    798

    Re: [2008] image overlay

    Alright I checked that thread but I dont know if It could help me.

    I think i may need to provide more details:

    I have a image saved on harddrive which I can create a new Bitmap Object from.
    ...
  9. Replies
    8
    Views
    798

    Re: [2008] image overlay

    Its winforms. I just took the screenshot of that because thats how I want myne to be.

    pretend the screenshot is not the text but its an image. pretend the "chat with ..." isnt there, so just...
  10. Replies
    8
    Views
    798

    [RESOLVED] [2008] image overlay

    Hey guys,
    I have a screenshot application but I want to add a feature to it. Basically I want to add an image overlay .. like a highlight of the image.
    ...
  11. Re: [2008] Taking advantage of multiple core processors

    I think there's no explicit way to decalre what core to use for a specific program (unless maybe with the help of win32 API).

    However, I think that if you work with a threadpool and say create...
  12. Replies
    12
    Views
    2,683

    Re: [2008] Using ByVal vs ByRef

    You also have to understand that you can do a lot more with pointers but also makes them confusing. For example if you have a class in c++ that dynamically allocates memory for example:



    class...
  13. Replies
    8
    Views
    1,041

    Re: What version of VB to get

    And most of them are IDE features. Your much better off getting an express 2008 then buying a professional 2003.
  14. Re: [2008] How do I compile a project into native code?

    Its called the MSIL.
    And its interpreted by the JIT compiler.
  15. Re: [2008] What To Use, Structure, Dictionary?

    You need to create a class (or structure) with those 5 fields. In the constructor initialize those fields. (use properties to set/get them and make the fields private). I am at work so i cant type...
  16. Re: [2008] Problem with deleting an item of an array

    I think what you should be doing is creating a List<T>. I only say this because it gives you an easier way to add/remove items.

    Then what you do is databind this List to the grid. Then if you...
  17. Re: [2008][need help]Help me with a function[need help][2008]

    This information is available on the MSDN site. The only reason I am not personally helping you is because I have strong reason to believe that your creating "bogus" or spam accounts for this game...
  18. Replies
    7
    Views
    1,043

    Re: [3.0/LINQ] inheriting forms.

    Yes I did, which leads me to believe that the error is because I am using GDI to draw the form rather then .net I think. here is the call stack.. or the first couple of lines.




    The only thing...
  19. Replies
    7
    Views
    1,043

    Re: [3.0/LINQ] inheriting forms.

    That is correct. Here is a screenshot when I try to pull up "camera" in Design mode.

    http://www.kalleload.net/uploads/qnfvwqckkaxv.jpg

    However, the layeredForm (base class) loads fine..
    ...
  20. Replies
    7
    Views
    1,043

    Re: [3.0/LINQ] inheriting forms.

    edit: double post due to bug in IE8.
  21. Replies
    7
    Views
    1,043

    Re: [3.0/LINQ] inheriting forms.

    I used the inherited form function. (then I tried doing it manually also)

    Both resulted in that error, (however it works when compiled).. so i have no idea whats going on.
  22. Replies
    7
    Views
    1,043

    [3.0/LINQ] inheriting forms.

    I have another form (camera.cs) which inherits from LayeredForm. This works perfectly when compiled, however in design mode it says "Error Creating Window Handle"

    But since camera.cs is all...
  23. Replies
    10
    Views
    844

    Re: [2003] Install Package

    Lol believe it or not, when I come everynight to view the forums, I look at the "last post by" to see if you've replied. :)
  24. Replies
    10
    Views
    844

    Re: [2003] Install Package

    Oh sorry, Completely missed that last line of yours. lol
  25. Replies
    10
    Views
    844

    Re: [2003] Install Package

    I think the the problem is that your creating a new solution. In the same solution where your software is, follow sparrow's suggestion. Then you will have two projects in the same solution and the...
  26. Replies
    16
    Views
    6,249

    Re: [2008] Detect registry changes?

    You have to call it using RaiseEvent
  27. Re: [2008] Is it possible in VB.Net to create voice chat app. like in Messenger or skype?

    Theres also C4F however I dont know if it supports voice chat.

    http://www.microsoft.com/express/samples/c4fdevkit/Default.aspx
  28. Re: [2008] Is it possible in VB.Net to create voice chat app. like in Messenger or skype?

    You'd have go research this. I googled it and I think the last post on this forum will be the most useful to you
    http://www.devmaster.net/forums/showthread.php?t=6486
  29. Replies
    5
    Views
    960

    Re: Popup Input Box for User Input

    ^ a simple trick is to paste it in wordpad first, and then to vs.
  30. Replies
    2
    Views
    651

    Re: [2008] My.Settings

    1) Right next to the exe. usually in the format of myProgram.exe.config.

    2) If you right click your project and click properties and then click the settings tab, you can specify the name, type and...
  31. Replies
    2
    Views
    652

    Re: Regular Expressions and BBCode Parsing

    I am not sure if you can use this or if its even relevant to you. Today I was working with Regex and headed over to MSDN for documentation when I found out that there are already many derived classes...
  32. Replies
    12
    Views
    1,112

    Tutorial On Recursion

    Click this thread.
  33. Replies
    0
    Views
    498

    [2008] plugin system.

    hey guys, lets see if i can make this as clear as possible.

    I have an application. This application has a clas that sends POST Data over to a PHP/aaspx script. Acutally it dosnt matter what...
  34. Re: [2008] Calculating the equation of time

    couple of things.
    Specify a return type for your property. If its a string (which i assume it is) then call the static ToString() method at the end.

    Try putting a breakpoint there and see if the...
  35. Replies
    6
    Views
    996

    Re: [2005] How To Close A Form?

    You dont really need to set all the variables to Nothing. Read up on the variable scopes. Basically any variables that are created with in your program are given back to the OS after your program...
  36. Replies
    37
    Views
    1,908

    Re: [2005] HELP with automated emails

    Thats wierd. I can say that the problem is with your SMTP protocol. The code is perfectly fine as I just tried it.

    Do the following and see if it works:
    1 make google account.
    2 use...
  37. Re: [2005 Express] How to make splashscreen and redirect

    Alright VB6 and Vb.net are different with different syntax. .net programs require the .net framework to be installed (no matter how simple the program is). Vb6 also has runtime files that need to be...
  38. Re: [2005] Best Method or Practice to my problem

    well instead of sending it over tcp-ip, can't you do the following:

    -client logs in,
    -application authenticates the user. If user is authenticated then the mac address (or HD serial or w/e info)...
  39. Replies
    9
    Views
    1,377

    Re: Need some assistance with code writing!

    lol .paul. you have to let the man try! no harm in helping another human being though ;P
  40. Replies
    2
    Views
    800

    Re: Hooks - Can not understand the Delegate

    http://www.vbforums.com/showthread.php?t=498387
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width