Search:

Type: Posts; User: jj103

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. VS 2019 Re: Form loses modern stylings when instantiated and started from module

    (Lol.) My professor wants a "Standard Module" as the startup object; I have named mine MainModule. This will hold project globals and instantiates forms. From the main module is my Sub Main, from...
  2. VS 2019 Re: Form loses modern stylings when instantiated and started from module

    Per the attachment, 4.7.2.
  3. VS 2019 Re: Form loses modern stylings when instantiated and started from module

    Very fair. This is how my professor wants projects structured. I assumed this was the de facto way of writing your apps but judging by the reactions, this is a weird edge case.

    Thanks everyone for...
  4. VS 2019 Re: Form loses modern stylings when instantiated and started from module

    Thanks for response! But no, that doesn't fix it.
  5. VS 2019 Re: Form loses modern stylings when instantiated and started from module

    Realizing it might be because I had to uncheck Enable Application Framework to set my module as the Startup Object.

    188852
  6. VS 2019 Form loses modern stylings when instantiated and started from module

    Hey all! Long time no see.

    Problem
    Can someone help me understand why my forms look "modern" in the design window, but like Windows 1.0 when it's running?
    It seems to lose this modern styling...
  7. Replies
    2
    Views
    1,770

    VS 2017 Parsing YAML in visual basic?

    For the life of me, I can't get any method to work. As far as I can see, everything was made for C#. This is really frustrating.
  8. Replies
    2
    Views
    519

    .replace and select case?

    I want to make a "hidden message" decoder. Simple enough I thought, knowing the string.replace("a","1") method. But I don't want to rewrite

    string.replace("a","1")
    string.replace("b","2")...
  9. Replies
    7
    Views
    10,679

    VS 2017 Re: [RESOLVED] JSON parse/token issue

    Holy moly..did you feel the facepalm? I had Newtonsoft.Json.Linq, it never occured to me I'd need to import the rest.

    I guess the following isn't correct? (This is my first time using Classes)
    ...
  10. Replies
    7
    Views
    10,679

    VS 2017 Re: JSON parse/token issue

    Private Sub GetRank2()

    Try
    Dim Request As WebRequest = WebRequest.Create("https://na1.api.riotgames.com/lol/league/v3/positions/by-summoner/" & SummonerID & "?api_key=" &...
  11. Replies
    7
    Views
    10,679

    VS 2017 Re: JSON parse/token issue

    sorry about the library, slipped my mind. thank you for all the good read! learned a lot.
  12. Replies
    7
    Views
    10,679

    VS 2017 Re: JSON parse/token issue

    Worked great! Thank you for the time and effort!
  13. Replies
    7
    Views
    10,679

    VS 2017 [RESOLVED] JSON parse/token issue

    I have a basic understanding of JSON, but clearly not enough.

    I am able to create a messagebox with "ID" from this JSON


    {
    "profileIconId": 0000,
    "name": "name",
    "id": 12345678,...
  14. Replies
    1
    Views
    411

    VS 2017 RTB Color change in "chatlog"

    Relearning VB.net, decided to make a silly chatbot. I want the user input and bot output different colors in the RTB. I'll post what I've been trying to make work but I'm struggling because I don't...
  15. Replies
    7
    Views
    2,603

    VS 2017 Re: Finding certain part of text and extracting.

    I'm sorry. I read it as if looking for a partifuclar attribute. Didn't know how to use the information given. I messed around with it and couldn't figure it out. Thought I miscommunicated but I...
  16. Replies
    7
    Views
    2,603

    VS 2017 Re: Finding certain part of text and extracting.

    Well I'm not looking for attribute (I believe, the adbcde in the example) in particular. I need it to extract the content from example:content2.
  17. Replies
    7
    Views
    2,603

    VS 2017 Re: Finding certain part of text and extracting.

    I think so!
  18. Replies
    7
    Views
    2,603

    VS 2017 Finding certain part of text and extracting.

    Hi. It's been many years since programming but I've had an idea for long but never knew how do ask. (I was very young at the time.)

    Basically, I need a way to search through text and find a part...
  19. Replies
    6
    Views
    912

    VS 2010 Re: "Closest to" in select-case?

    I ended up using

    Select Case True
    Case InputTxtBox.Text.Contains("hello")
    OutputLbl.Text = "Hi there!"
    End Case
  20. Replies
    6
    Views
    912

    VS 2010 Re: "Closest to" in select-case?

    Yeah I guess "AI" in a sense! ha! But how I would get a keyword system is annoying..and I'm not trying to do anything impressive;)
  21. Replies
    6
    Views
    912

    VS 2010 [RESOLVED] "Closest to" in select-case?

    I am currently trying to broaden my knowledge of VB.net, and thought I'd make an input-output program. (User puts in "What's today's date?" and it says today's date.)

    My issue is I don't want the...
  22. Thread: Interactive Book

    by jj103
    Replies
    5
    Views
    835

    VS 2012 Re: Interactive Book

    Wow! Rtf looks very very difficult to code in.. Even the simple stuff I wanted like bold and perhaps different colors. Wow.
  23. Replies
    12
    Views
    3,278

    Careers in vb.net

    Although I am not very good at all, I am in love with vb.net. It's fun to have ideas and recreate them as best as I can. But it seems other languages are something I need to look at before deciding...
  24. Thread: Interactive Book

    by jj103
    Replies
    5
    Views
    835

    VS 2012 Re: Interactive Book

    Thank you! I think I will, but what's the significance of a .rtf compared to a .txt? Is it like html in a sense that you can use coding inside so it displays differently in the richtextbox? Thank you...
  25. Thread: Interactive Book

    by jj103
    Replies
    5
    Views
    835

    VS 2012 Interactive Book

    I've been coding for several years, but I have a new idea and I need some help

    Regarding a particular book, it's very confusing and unclear at first look, so I thought I'd go ahead and re-write it...
  26. VS 2010 Linking labels and faster mouse hover update

    Okay so forgive me, this will be hard to explain. But two questions:


    Question 1:
    But I'm currently coding a game and I'm trying to clean things up a bit. I want the user to be able to click a...
  27. Replies
    5
    Views
    4,419

    VS 2010 Re: XML string help

    Thank for the help!
    But the issue with that is it's just using that particular string. I need it to download the xml from the source and break up the different days.
    Perhaps I'd have it go through...
  28. Replies
    5
    Views
    4,419

    VS 2010 Re: XML string help

    Thank you!
    But the problem with that is when I set it to a label it just displays the last one, and on the message box it just floods me with messageboxs. Any suggestions?
  29. Replies
    5
    Views
    4,419

    VS 2010 [RESOLVED] XML string help

    (Using the url http://weather.yahooapis.com/forecastrss?w=2459115)
    For the XML I can easily display the "ttl" element into a label, but for the


    <yweather:forecast day="Mon" date="28 Apr 2014"...
  30. VS 2010 Re: [RESOLVED] If then statement for number ranges?

    Would this work for multiple ranges?


    Private Sub Foo()
    Dim n As Integer = 0

    If Integer.TryParse(Me.TextBox1.Text.Trim, n) Then
    If n >= 1 AndAlso n <= 5 Then...
  31. VS 2010 Re: If then statement for number ranges?

    Thank you very much!!!!
  32. VS 2010 Re: If then statement for number ranges?

    Then I can use

    If Cint(TextBox1.text) > 1 and Cint(TextBox1.text)< 5 then
    label1.text = "It's between 1 and 5!"
    End If
    ??
    Currently afk and on mobile, just wondering for when I get home!
  33. VS 2010 [RESOLVED] If then statement for number ranges?

    For some reason I can't get a good if then statement for number ranges.

    Here's an example of what I want:

    Button1 code:

    If textbox1.text > 1 and textbox1.text < 5 then
    label1.text = "It's...
  34. Replies
    8
    Views
    6,844

    VS 2010 Re: Weather app and website information gatherer

    Alright! So far looking good but I think one more question!
    Temperature is found in the "ttl"
    But for the others, let's say the extended forecast, it has a lot of data per tag.
    Let's say I want a...
  35. Replies
    8
    Views
    6,844

    VS 2010 Re: Weather app and website information gatherer

    Okay! Thank you very much, but I seem to not be able to find the "string"

    Sorry..very long time and I can't figure it out.

    Currently using "http://weather.yahooapis.com/forecastrss?w=2459115"...
  36. Replies
    8
    Views
    6,844

    VS 2010 Re: Weather app and website information gatherer

    I private messaged you!:)
  37. Replies
    8
    Views
    6,844

    VS 2010 Weather app and website information gatherer

    Hello everyone!!
    It's been a long, long time since I've been coding. But today I had a fun idea for a weather app but I need some help..

    I forgot the coding on how to get information from a...
  38. Replies
    9
    Views
    892

    VS 2010 Re: Yet another problem with webbrowser..

    I want it to add on the text box in the browser, but it keeps deleting the whole message. I just want it to add it to the end.. Some of y'all are very rude too.
  39. Replies
    9
    Views
    892

    VS 2010 Yet another problem with webbrowser..

    I am creating a small program for a class that auto logs and clicks to a certain page, puts in a message, and send it, all from the webbrowser and with one click..

    I have all of that but here is a...
  40. Replies
    2
    Views
    631

    VS 2010 Another question about Webbrowser!!

    Hey y'all!

    How can I make my webbrowser box stay within a certain ratio of my form?? Like docking but with a lil room around the edges and a lot of room at the top for button and stuff!!

    Any...
Results 1 to 40 of 52
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width