Search:

Type: Posts; User: omundodogabriel

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Re: Is there serious audio programming in dotnet?

    I don't know of any. .net sucks for audio, last time I checked you could play a wave file and that's it.
  2. VS 2005 Re: How to make my app's user sends sms from his own cell phone ?☺

    What you want is impossible, at least without an app on the phone connected to the computer listening for the requests. You can't just type a number on a box and have a message sent by that phone...
  3. VS 2005 Re: How to make my app's user sends sms from his own cell phone ?☺

    I don't know about iOS, but I do think that is possible to create an app capable of sending SMS on Android without root or anything like that:
    ...
  4. Replies
    3
    Views
    12,958

    Re: How to Resize form without border

    Tutorials and samples belongs to the CodeBank forum. You should also use the [CODE] tag around your code for better readability.
  5. VS 2010 Re: Displaying and changing volume and network

    It depends on WHERE you are playing the video tutorials. The wmp control? Maybe the WPF native MediaPlayer control? Both have a Volume property that you can adjust.
  6. VS 2010 Re: got a strange one here. items not displaying in the correct place on lenovo compu

    I like how you wrote this quention in a sort of comic way. Check out the AutoScaleMode property of your form, it is default set to Font. If the font that your application uses isn't present on the...
  7. Replies
    6
    Views
    1,059

    Re: [RESOLVED] VS2015 References Oddity

    I think that "System.IO.Compression.FileSystem.dll" was added in .net 4.5, along with the new Zip classes. Maybe they moved the other compression related classes in there aswell.
  8. Replies
    6
    Views
    1,059

    Re: VS2015 References Oddity

    Mine also does show it, except when I target 4 and below. 4.5, 4.5.1, 4.5.2 and 4.6 are fine.
  9. Re: Is it good practice to put an 'Exit For' in a for loop once your value is found?

    Yea, I also don't like to modify the for loop variables, since it makes the code harder to follow. I think that in this case the use is reasonable, because it's clear that the piece of code will end...
  10. Re: Is it good practice to put an 'Exit For' in a for loop once your value is found?

    What about


    For y = 0 to YUpperBoundary
    For x = 0 to XUpperBoundary
    if found(x,y) then
    x = XUpperBoundary
    y = YUpperBoundary
    End if
    Next
  11. Re: How can I assign pictures to a set of picture boxes from a collection!

    All controls have a "Tag" property that you can use to put pretty much whatever you want, since it is an object. So you could "mark" those six pictureboxes, and when you look through the control, you...
  12. Re: How can I assign pictures to a set of picture boxes from a collection!

    If you are making a game, would be better to paint everything directly in just one picturebox, that would be your viewport, no?

    If you need a place to store the images you can use the project...
  13. VS 2008 Re: Not able to select custom made control on form designer because of paint event?

    The way I would do it is using the e.Graphics on the Paint event to draw the gradients. Actually, I already made a bunch of custom controls and never had this kind of problem. And it doesn't draw...
  14. Re: Screen Video/Audio capture software like FRAPs?

    I believe that FRAPS works using directx api hooking to get framebuffer addresses and whatnot. I quick search revealed this project:...
  15. Replies
    8
    Views
    3,680

    Re: Instagram Login Form Using API

    TUT means tutorial.

    And the example OP linked doesn't use the API. Its just web scraping and replicating the request made by a browser. So, if you really want to use the API, youll need to find...
  16. Replies
    31
    Views
    7,750

    VS 2015 Re: Creating A Better Emboss Function

    This is not correct through. Yes, if you do a FLOAT division, and assign it to a integer, it will do the bankers rounding. But if you do a INTEGER division with "\", the decimal portion will not be...
  17. Replies
    31
    Views
    7,750

    VS 2015 Re: Creating A Better Emboss Function

    Another possible speedup, you should be using this:


    Dim Y As Integer = t \ width

    instead of this:


    Dim Y As Integer = CInt(Math.Floor(t / width))
  18. Replies
    31
    Views
    7,750

    VS 2015 Re: Creating A Better Emboss Function

    The first thing you can do is throwing away the floating point multiplication, and using integer only:


    grayData(t) = (r * 77 + g * 150 + b * 29) >> 8 'Set the Blue byte


    The second thing is...
  19. Replies
    10
    Views
    2,251

    Re: The future for VB? Discussion.

    Yes, I do think it is faster to type.
    For example, writting a "{" is just two key strokes, while a "then" is 4. At worst it would be the same speed, due to the need to offset the hand a bit to the...
  20. Replies
    10
    Views
    2,251

    Re: The future for VB? Discussion.

    I rarely use vb.net nowadays, I actually only use it to supply examples for this forum now. After I started to use more C-like languages I just couldn't use vb anymore. The C syntax is also faster to...
  21. Replies
    8
    Views
    892

    VS 2013 Re: Validate a file

    The hashes you're trying to store on the files also can be re-calculated, no?
  22. Replies
    8
    Views
    892

    VS 2013 Re: Validate a file

    Kinda hacky solution, but you can try to add your hash at the end of the file. Programs usually don't care for "garbage" at the end. PDFs in particular have "%%EOF" on the end, and it will not try to...
  23. Re: How to parse this data into a list box?

    No, it is for both. The language where it is written doesn't matter, because in the end all .net (vb.net, c# and such) code is compiled into MSIL.
  24. Re: Decode encoded-as-aaencode JavaScript program

    Well, if you don't know how functions work, I recommend you reading some basic programming tutorials before attempting something like this. But anyway, here's a example of how to use it:
    - Create a...
  25. Re: How to parse this data into a list box?

    You can use the string split function, searching for "Environment.NewLine + Environment.NewLine". Then add the results into a multi column ListView. You could use a split with ":" to split the...
  26. Replies
    17
    Views
    11,583

    VS 2013 Re: Region detection number plate

    Yea you can add me as a friend and/or PM me, no problem.


    Thanks. And for you question, no, any kind of blur filter will make the text less and less readable, and the results will get worse. A...
  27. Re: Decode encoded-as-aaencode JavaScript program

    You can well, convert the code to vb...
    I translated the encode function to vb:


    Private Function AAEncode(js As String) As String
    Dim out As New StringBuilder()
    ...
  28. Replies
    17
    Views
    11,583

    VS 2013 Re: Region detection number plate

    I polished the code a bit, and also commented it, hopefully its easier to understand now:

    Code: http://pastebin.com/jgGHsYmd
    Note: Had to add it on pastebin cause vbforums complains that the post...
  29. Replies
    21
    Views
    17,024

    VS 2013 Re: vb.net instagram login without API

    Yup, this account works.
    Btw, didn't had any problem logging into the page.
    Here is the sample I made:


    Option Explicit On
    Option Strict On

    Imports System.IO
    Imports System.Net
  30. Replies
    17
    Views
    11,583

    VS 2013 Re: Region detection number plate

    Not sure of which solution you're using, but anyway, I was thinking that all your plates was like the image you posted here (that is, properly cropped without a part of the car in it). Well, since...
  31. Replies
    17
    Views
    11,583

    VS 2013 Re: Region detection number plate

    I made a quick OCR engine to demonstrate (part of) what I said.
    Since the layout is the same, you can use some hardcoded values to calculate the rectangle size and positions from the size of the...
  32. Replies
    17
    Views
    11,583

    VS 2013 Re: Region detection number plate

    it depends on the pictures youre analyzing really. If the position of the country code in all pictures is the same, you can just cut it out at some hardcoded positions, filter the image and OCR. If...
  33. Replies
    21
    Views
    17,024

    VS 2013 Re: vb.net instagram login without API

    Nice, but your test account doesn't work. I tried to do a login with it, and instagram warns "Invalid username or password".
  34. Replies
    7
    Views
    1,853

    VS 2015 Re: Predicting a number loop.

    Well, I can think of some math to do what you want in one line, but it would be slower and more complicated than using a simple if.
  35. Replies
    4
    Views
    2,643

    Re: Using ASCII for Encryption

    Actually I added 32 on purpose. 32 (0x20) is the equivalent to the space ascii character, and it is still a valid printable character, thats why I added it. Im not sure if the 33 was a mistake on the...
  36. Replies
    6
    Views
    1,419

    Re: Adding Calculator into POS?

    There are several ways to make one. If it was me, I would make a custom control inheriting from Control, do a custom drawing where each button is a separate tile, then override the click event and...
  37. Replies
    4
    Views
    2,643

    Re: Using ASCII for Encryption

    Dim Generator As New Random()
    Dim Key As String = String.Empty
    For i As Integer = 0 To 7
    Key &= Convert.ToChar(Generator.Next(32, 127))
    Next
    Console.WriteLine(Key)
  38. Replies
    14
    Views
    4,930

    Re: Index on textbox

    I'm guessing that the other software was a vb6 project. vb6 had a index property on the controls that allowed to access then as an array, if you gave the controls the same name. On vb.net this...
  39. Replies
    10
    Views
    12,701

    VS 2010 Re: Microsoft Edge browser and web scraping

    On Edge you can press F12 to open the Developer tool. It will show the HTML source as a tree structure by default.

    For you question about using the Edge instead of Internet Explorer, I don't think...
  40. Replies
    10
    Views
    12,701

    VS 2010 Re: Microsoft Edge browser and web scraping

    Using a HttpWebRequest to do your POST/GET request and send the login info to the page, is better than having a whole browser control on your application doing that for you. The browser have the...
Results 1 to 40 of 177
Page 1 of 5 1 2 3 4



Click Here to Expand Forum to Full Width