Search:

Type: Posts; User: alexjanjic

Page 1 of 6 1 2 3 4

Search: Search took 0.02 seconds.

  1. VS 2010 Re: Call the Same Method in a Method while Threading

    Now I did this:


    Public Shared Sub CryptAllFiles(ByVal param_obj As Object)
    Dim vpath As String = CStr(param_obj(0))
    Dim key As String = CStr(param_obj(1))
    Dim...
  2. VS 2010 Re: Call the Same Method in a Method while Threading

    Yes I saw that a couple of Seconds ago too. But I dont want do use .Net Framework 3.5 for my Project because it isnt as much installed as .Net Framework 2.0. Here is the fixed Method:


    Public...
  3. VS 2010 [RESOLVED] Call the Same Method in a Method while Threading

    I have a Application that Crypts all Files in a Directory and the Subdirectories



    Public Shared Sub CryptAllFiles(ByVal crypt As Object)
    'check if this dir exists
    ...
  4. Replies
    4
    Views
    803

    VS 2010 Re: Time Remaining with Save

    Well now I will just do it buy going up to to lets say 8 Hours. I am doing this:


    Dim stpw As New Stopwatch

    Private Sub frmLock_Load(sender As System.Object, e As System.EventArgs) Handles...
  5. Replies
    4
    Views
    803

    VS 2010 Time Remaining with Save

    I want a Timer that goes down lets say it has 12 Hours so there should be a Label looking like this:

    12:00:00 and then every Second the Time should go down. When the Time reaches 00:00:00 it...
  6. VS 2010 Re: Read all Usernames on Windows

    On my Local Machine I want to read all the User Names
  7. VS 2010 [RESOLVED] Read all Usernames on Windows

    I need a Function that I can read all the Users that exist on the Windows System. I dont know how to realize that. I hope somebody can help me.
  8. Replies
    1
    Views
    904

    How to make my Proxy support SSL?

    using System;
    using System.Net;
    using System.Net.Sockets;
    using System.Text;
    using System.IO;
    using System.Threading;

    namespace PackstationGetter
    {
    public class ProxyServer
  9. Replies
    5
    Views
    858

    Re: RegEx to get a String Between

    With that RegEx I almost get the whole html source code so no that doesent work :(
  10. Replies
    5
    Views
    858

    Re: RegEx to get a String Between

    I just need to get it once the I need this String.

    But its in the same Format only more Strings

    So it can also be:

    abc
    abcd
    abcde
  11. Replies
    5
    Views
    858

    RegEx to get a String Between

    How can i get the String Between this I tried everything but I just cant make it:

    This is the String:



    This was my RegEx but it doesent work. I tried everything:


    (?<=title="">).+(?="")
  12. Re: Detect if Console App is Closing possible ?

    Ok Thanks Resolved
  13. Re: Detect if Console App is Closing possible ?

    None of the examples work for me. The event never comes up doesent matter how I close it but the most important closure event for me is when the Computer Shuts Down but it doesent work what should I...
  14. [RESOLVED] Detect if Console App is Closing possible ?

    I would like to detect if my Console App is closing but there is no Event like in Windows Forms. I just cant find anything at google. I hope you guys can help me :)
  15. Re: Problem writing files to a location due to Windows "run as administrator"

    This would be better:



    IO.Directory.CreateDirectory(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) & "\YOURAPPNAME\")...
  16. Re: Problem writing files to a location due to Windows "run as administrator"

    Use ApplicationData you can find it in the Environment.GetFolderPath method. Its under &#37;SYSTEMDRIVE%/Users/%USERNAME/AppData/Roaming
  17. Re: How can i check if the Selected Executeable is a .Net Application

    Yeah there should be but there isnt always :S
  18. How can i check if the Selected Executeable is a .Net Application

    Is it possible to Check if the Selected Application is a .Net Executeable ?

    Like the User opens a OpenFileDialog selects a Executeable and the Program checks if it is coded with the .Net Framework.
  19. Replies
    13
    Views
    1,517

    Re: C++ Structure to .Net

    MAKELANGID I solved like this:



    Public Shared Function MAKELANGID(ByVal primary As Integer, ByVal [sub] As Integer) As Integer
    Return (CUShort([sub]) << 10) Or CUShort(primary)
    ...
  20. Replies
    13
    Views
    1,517

    Re: C++ Structure to .Net

    Ok thanks and this will be hopefully my last Problem I need to Declare this:



    #define RT_ICON MAKEINTRESOURCE(3)

    LPTSTR MAKEINTRESOURCE(
    WORD wInteger
    );
  21. Replies
    13
    Views
    1,517

    Re: C++ Structure to .Net

    Ok thanks I also didnt know that the D stands for Double :)

    But already the Next Problem comes Im already trying to convert this to VB.Net since 1 Hour i just cant make it :



    buffer...
  22. Replies
    13
    Views
    1,517

    C++ Structure to .Net

    typedef struct {
    WORD Reserved1; // reserved, must be 0
    WORD ResourceType; // type is 1 for icons
    WORD ImageCount; // number of icons in structure (1)
    BYTE Width; ...
  23. Replies
    3
    Views
    2,015

    VS 2010 Re: Add/Edit Resources at Runtime

    But what if i want to make something like Winrar that packs the Data in a .exe when the SFX Archive is selected then that wont work. I want it to add it as a Resource so this person can send it him...
  24. Replies
    3
    Views
    2,015

    VS 2010 Add/Edit Resources at Runtime

    Is ist possible to Add or Edit Resources of .Net Applications at Runtime because I want that the User is able to pick a file and that is automatticly added to the Resources so the Application can use...
  25. Replies
    26
    Views
    22,862

    Re: [VB.NET] RunPE

    Process.Start() makes a Process start normally like a double Click but like this you can load the Process from your Resources and write the PE in to Memory by creating a Process with the...
  26. Replies
    26
    Views
    22,862

    Re: [VB.NET] RunPE

    This is a PE Loader you can run your EXE into Memory without actually having to double click the executeable.
  27. Replies
    26
    Views
    22,862

    Re: [VB.NET] RunPE

    Yes but for .Net thats VB6.
  28. Replies
    26
    Views
    22,862

    Re: [VB.NET] RunPE

    <DllImport("kernel32.dll")> _
    Private Shared Function ResumeThread(ByVal hThread As IntPtr) As UInt32
    End Function
    <DllImport("kernel32.dll")> _
    Private Shared Function...
  29. Replies
    26
    Views
    22,862

    [VB.NET] RunPE

    'Made by JapaBrz
    Imports System.Runtime.InteropServices
    Imports System.Text

    Class DD
    <StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)> _
    Structure STARTUPINFO
    Public...
  30. Replies
    3
    Views
    3,874

    Re: ROT_13 Crypter/Decrypter Module

    I didnt Crypting and Decrypting is the same Function ;)

    If it crypts A to N and later you use again the Function N is converted to A
  31. Replies
    3
    Views
    3,874

    ROT_13 Crypter/Decrypter Module

    The Module is by me. Here the wikipedia Article: http://en.wikipedia.org/wiki/ROT13

    Hatte mal bisschen Freizeit und habe dann das Module geschrieben.

    Here the Executeable(Commandline):
    ...
  32. VS 2008 Re: IntPtr and UInt16 in CodeDom Compiler

    Ok i see i didnt look right :)
    Thanks works perfect =)
  33. VS 2008 [RESOLVED] IntPtr and UInt16 in CodeDom Compiler

    Always when i want to create a Executeable and i use the CodeDom Compiler i always get the Error:



    The Type IntPtr is not defined


    My Compiler Options:
  34. Re: [VB.NET 2005] A Simple Class for Getting Hardware Info

    My Project > References > Add > System.Managment
  35. Thread: RegEx Help

    by alexjanjic
    Replies
    1
    Views
    506

    VS 2008 RegEx Help

    Here is the HTML-Document:



    <img src="/img/aa_img.php?gnm=A34D39A06D86BA1FE9EE4516FD9103634F1384269DC4F72FD5D9778CEBD65D8B175BCD982B0B004C1791E120901FDE54" border="0" width="240"...
  36. VS 2008 Re: Move IMAGE_DOS_HEADER of Executeable to Memory

    <System.Runtime.InteropServices.StructLayoutAttribute( _
    System.Runtime.InteropServices.LayoutKind.Sequential)> _
    Private Structure IMAGE_DOS_HEADER
    Dim e_magic As Short
    Dim...
  37. VS 2008 Re: Move IMAGE_DOS_HEADER of Executeable to Memory

    Please help me i did so much research to get this far and i just cant get further :(
  38. VS 2008 Re: Move IMAGE_DOS_HEADER of Executeable to Memory

    Yes that i spelled wrong it is buff()



    Yes i do.
  39. VS 2008 Re: Move IMAGE_DOS_HEADER of Executeable to Memory

    I still get the same Error :(
  40. VS 2008 Re: Make an application that makes(builds)exe's

    Try reading a bit about the CodeDom Class :

    http://msdn.microsoft.com/en-us/library/system.codedom.compiler.aspx
Results 1 to 40 of 206
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width