Search:

Type: Posts; User: ...:::ONE:::...

Page 1 of 9 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    1
    Views
    801

    VS 2012 Different Context Menu Style?

    I want the context menu for my tray icon to look standard as all the others do. I have seen 3 different menu styles, one of which I can't seem to find. There's the default used in visual studio, that...
  2. Replies
    14
    Views
    1,783

    VS 2012 Re: Intercepting access to a file?

    Exactly. Sorry, I worded that sentence wrong. I am considering writing my own filter driver, there is a lot of functionality I could take advantage of that could be useful. I'm really not the person...
  3. Replies
    14
    Views
    1,783

    VS 2012 Re: Intercepting access to a file?

    Thanks for the replies. It does seem to be a certain complicated task, Niya's idea is what I'm looking for. Looks like I might need to retreat to my meager c++ experience and develop something that...
  4. Replies
    14
    Views
    1,783

    VS 2012 Intercepting access to a file?

    I'm working on some encryption software. To me it seems that the most efficient way to get use of encrypted files quickly is to encrypt them all separately and they can be accessed individually....
  5. Replies
    11
    Views
    1,505

    VS 2012 Re: Key Logger Confusion?

    I don't just want the application to portray security, I want it to be security. I would say it's "a must have that is nice to have" but if I made it overly simple and/or less secure; what is going...
  6. Replies
    11
    Views
    1,505

    VS 2012 Re: Key Logger Confusion?

    Haha, who would use such a simple pattern? I'm not saying it is flawless but a run generated algorithm disguising the characters in a seemingly random pattern would not be a walk in the park for a...
  7. Replies
    11
    Views
    1,505

    VS 2012 Re: Key Logger Confusion?

    I agree with you, but this software wouldn't just be for personal use on ones own PC. It might be nice to have this feature when using the device on another PC. If it were possible to scramble the...
  8. Replies
    11
    Views
    1,505

    VS 2012 Key Logger Confusion?

    I'm working on a simple auto-run software for flash drives with file encryption and some other security features. Something that came to mind were risky environments with key loggers. An "anti-key...
  9. Replies
    10
    Views
    4,719

    VS 2012 Re: IndexOf Text in Quotations

    I figured out my problem. A variable at the top of my class was producing a null value which was used in my url builder, this creates the url used for the WebClient.DownloadString function. The null...
  10. Replies
    10
    Views
    4,719

    VS 2012 Re: IndexOf Text in Quotations

    I apologize for simplifying my problem, I thought it would make it easier, but it looks like it may have stirred up some confusion.

    I'm really working with WebClient and converting a URL into an...
  11. Replies
    10
    Views
    4,719

    VS 2012 Re: IndexOf Text in Quotations

    That code works by itself, but with my text file converted to a string, it does not.

    I can accurately get the indexes of any other text that does not contain quotes, and verification of the text...
  12. Replies
    10
    Views
    4,719

    VS 2012 [Resolved] IndexOf Text in Quotations

    I'm trying to find the index of "some text", including the quotations. I've tried a few ways to escape the quotations but all have failed, resulting in an index of -1

    Example...



    Dim txtFile...
  13. VS 2010 Re: How to manipulate an array during runtime?

    I was thinking about a list, but I never tried it. This is exactly what I needed.



    Thanks,
    -Chris
  14. VS 2010 [RESOLVED] How to manipulate an array during runtime?

    I'm kind of stumped on how to make an active array of classes/objects without defining the total amount needed at runtime. I want to be able to have as many of the classes/objects the user specifies...
  15. Replies
    1
    Views
    2,871

    VS 2010 Re: MenuStrip/MainMenu RenderMode

    http://wyday.com/blog/2009/making-the-menus-in-your-net-app-look-professional/

    Thanks to Google i finally found what I was looking for. I provided the link in case anyone had the same question I...
  16. Replies
    1
    Views
    2,871

    VS 2010 MenuStrip/MainMenu RenderMode

    I cannot get the MenuStrip control to render to the newer style (for example, the menustrip style used in VS 2010 on W7, vlc media player, firefox, etc). I found something similar to what I'm looking...
  17. [VB.NET] Re: Any OpenGL or DirectX references for .NET?

    No problem. The crew for OpenTK has been working hard on this library and they also did a great job on the site by providing documentation, tutorials, and source code examples that are up to date.
  18. [VB.NET] Re: Any OpenGL or DirectX references for .NET?

    Thanks for the code and instructions on how to properly reference DirectX, I had no idea that it couldn't be used with .Net 4.0 (shows how much I know), and the code should help get me started and...
  19. [VB.NET] Any OpenGL or DirectX references for .NET?

    Has anyone used OpenGL or DirectX (preferably OpenGL) with VB 2010?

    I'm having a problem finding reference material on OpenGL or DirectX for use with the 4.0 Framework and VB 2010. All the...
  20. Replies
    2
    Views
    1,243

    VS 2010 Re: Direct2D ??

    @Evil_Giraffe

    Thanks for your input. I was told that same thing by a friend. I have been thinking about re-writing my code, and hoping I can make it more efficient. I do think that it is a...
  21. Replies
    3
    Views
    8,522

    Re: Stadium Seating

    It's a simple math problem. If you don't know the basics of VB then you shouldn't be asking for the answer, you should be reading, doing tutorials, researching, studding, etc.

    You did get one...
  22. Replies
    2
    Views
    1,243

    VS 2010 Direct2D ??

    I've been working on a graphical simulator application using GDI. GDI is terrible for rendering what simple graphics I need, too much flickering and definitely not efficient. From what I have been...
  23. VS 2010 Re: Cannot MouseClick on Transparent Form Background

    I found out that I had a small line of code I was using for debugging that I never turned off, it had to do with the floating form and it's focus... the problem was that every time I put the floating...
  24. VS 2010 Re: Cannot MouseClick on Transparent Form Background

    I tried the ownership code, but it doesn't have any effect. It seems like the mouse isn't clicking through the main form at all.



    -Chris
  25. VS 2010 Re: Cannot MouseClick on Transparent Form Background

    Yeah I thought about that. But I couldn't make the background semi transparent (that I know of) so in my GUI I have another form in which I made the opacity 70% for a semi transparent look and...
  26. Replies
    6
    Views
    11,742

    VS 2010 Re: Slide Out Panel Control

    Try the "ToolStripContainer" Control, otherwise you may have to make something on your own.



    -Chris
  27. VS 2010 [RESOLVED] Cannot MouseClick on Transparent Form Background

    So, I have a form, and the background color of the form is set to the transparency key, making the background of the form transparent. The problem I'm having, is that the form cannot recognize the...
  28. Replies
    2
    Views
    523

    VS 2010 Re: Meta Details

    Chris, you have the same name as me. What a coincidence lol.

    .. and thanks, i'm gonna give this a try tonight. If I find a way of getting more details from the meta data, i'll post it on here for...
  29. Replies
    2
    Views
    523

    VS 2010 Meta Details

    Is their anyway of getting the meta information of a file?

    For Example:
    "Length" "Frame width" "Frame height" "Data rate" "Total bitrate" etc.
    Located in the Right Click>Properties>Details[tab]...
  30. VS 2010 Re: Adding Properties to an Existing Class/Control

    It doesn't have to function as a tool in the tool box, all the oval shapes are user generated, and initialized using code. As long as the class can be imported and function in code, that will work...
  31. VS 2010 Adding Properties to an Existing Class/Control

    Is there any way to add new properties to a control? For example, I'm using an "OvalShape" from Microsoft's Powerpacks, these are designated as "Cells". I would like to add properties to the class...
  32. Replies
    3
    Views
    707

    VS 2010 Re: Null Problem in Array?

    I feel stupid



    Dim cell_() As RectangleShape
    Dim bac_() As ShapeContainer
    Dim maxCell As Integer = 100

    Private Sub GenerateOval()
    Dim x As Integer = 100
  33. Replies
    3
    Views
    707

    VS 2010 Null Problem in Array?

    I've done arrays before but, I think I may be confused or something is going wrong here, any help?


    For x = 1 To 5
    Dim canvas(x) As ShapeContainer
    Dim cell(x) As...
  34. Replies
    2
    Views
    873

    VS 2010 Re: Custom Variables?

    That's exactly what I was looking for.

    Thank you
  35. Replies
    2
    Views
    873

    VS 2010 [solved] Custom Variables?

    Is there anyway to customize a variable to use both an integer and a boolean value?

    For example. I am kind of making a simulation engine and using GDI as a visual aid, I am generating a grid of...
  36. Replies
    1
    Views
    645

    Creating a GIF from Images

    I have a media gallery type project I'm working on, but I want to enhance it by creating animated thumbnails to "preview" the media. I have already created code to extract 10 incremented images from...
  37. VS 2010 Re: Simply put, moving to the next textbox.

    I'm not really using text boxes and timers, ha. I just said that for less confusion. More less I'm making an animated thumbnail generator for a media gallery type project of mine.

    In order for my...
  38. VS 2010 Simply put, moving to the next textbox.

    Sorry for a sketchy title.

    Lets say I have 10 text boxes (named, txtbox1 - txtbox10), and I have a timer and a button. Each time I click the button, it records a time. Instead of having to...
  39. Replies
    10
    Views
    19,138

    Re: Audio over wifi network (pc to pc)

    Thanks, i'll have to try these out.
    I seen the multiplex one on google somewhere before

    thanks again for the help,

    -Chris
  40. Replies
    10
    Views
    19,138

    Re: Audio over wifi network (pc to pc)

    Yeah you're right, I just ended up using remote desktop.
    But it's still not a solution because it requires more work then an audio network standalone.
Results 1 to 40 of 353
Page 1 of 9 1 2 3 4



Click Here to Expand Forum to Full Width