Search:

Type: Posts; User: Shawn N

Page 1 of 13 1 2 3 4

Search: Search took 0.87 seconds.

  1. Replies
    24
    Views
    3,795

    Re: C++ becoming outdated?

    Wow almost 20 years later.
  2. Replies
    4
    Views
    1,129

    VS 2010 Re: Webscrape HTML5 help

    I hate being the one that suggests a different solution to your problem, but in this situation parsing XML seems unnecessary. Have you considered an API service?
  3. Replies
    36
    Views
    10,217

    Re: Multithreading VB.NET ?

    Try this out.


    using System.Threading.Tasks;

    private async void SetText(string SetThis){ textBox1.Text = SetThis;}
  4. Replies
    36
    Views
    10,217

    Re: Multithreading VB.NET ?

    Is using async/await not an option?
  5. Replies
    3
    Views
    636

    VS 2010 Re: For each not executing

    For Each URLline As String In formMassURLs.txtBoxMass.Text.Split(Environment.NewLine.ToCharArray, System.StringSplitOptions.RemoveEmptyEntries)

    You'd be doing yourself a big favor if you broke...
  6. Replies
    8
    Views
    1,349

    VS 2010 Re: Working with XML

    Yea I tried the "//" prefix too but that didn't work out...have you tried your coding with the XML file I attached on my first post? It's shown as a Zip file but you just have to remove that...
  7. Replies
    8
    Views
    1,349

    VS 2010 Re: Working with XML

    Thanks for your time. I tried putting in just "Group" but that produced no results.


    Dim xmlDoc = New XmlDocument
    xmlDoc.Load(txtFilename.Text)


    Dim ndeNode As...
  8. Replies
    8
    Views
    1,349

    VS 2010 Working with XML

    I'm admittedly a complete newb to programming with XML. I'm working with the attached document (changed the extension to .ZIP for uploading) but can't get anything to work for XPATH. Can I get some...
  9. Replies
    2
    Views
    1,201

    VS 2010 Re: Polygon Hit Test

    Excellent! Thank you so much.
  10. Replies
    2
    Views
    1,201

    VS 2010 [RESOLVED] Polygon Hit Test

    Hi Everyone,

    I'll apologize in advance if this has been asked before. I'm still searching the forum but haven't found anything at this time.

    What I'm trying to do can be explained pretty...
  11. VS 2010 Re: InvalidOperationException (An error occurred creating the form)

    I realize this is months old, but I just had the same error & was freaking out. Thanks for posting your resolution even though you didn't get any help.
  12. Re: VS 2012 - Add Records to SQL Faster

    I'd create a Debug log showing displaying time since the last command executed & hone in on what's taking the most time.
  13. Thread: Algebra

    by Shawn N
    Replies
    2
    Views
    796

    Algebra

    Hello gents. Trying to help my girlfriend's daughter with some math & I didn't realize how bad I am with algebra. I'm not looking for an answer. Just an explanation on how this is solved. Any...
  14. Replies
    0
    Views
    2,497

    Searching Outlook Public Folder

    I'm having a strange error occur when I search through public folders. This is my code:




    objLargeItems = objLargeFolder.Items

    For Each objMailItem In objLargeItems
    ...
  15. Re: DataSet not connecting during runtime

    I replaced the line

    MapperDataSet.FIR.Rows.Add(rowNewFIR)

    with


    FIRTableAdapter.Insert(...)

    Thank you for pointing me in the right direction.
  16. Re: DataSet not connecting during runtime

    Ummmm...I didn't know there was save statement. Yes I'm blushing.

    Can you help me out with that line?
  17. Re: DataSet not connecting during runtime

    Yes & I realized that shortly after I made my initial post. I've changed the location of the database & updated the connection string so that it is outside of the project environment.

    This has...
  18. [RESOLVED] DataSet not connecting during runtime

    I have a dataset that is able to return information during design-time via the "preview data" feature. However, the same dataset returns an error:


    System.Data.OleDb.OleDbException was unhandled...
  19. Replies
    6
    Views
    704

    Re: simple login program

    Your method is a little messed up.
  20. Replies
    14
    Views
    861

    Re: newbie, has a quick question

    There's no easy way really. Maybe the text is held in memory for when it is redrawn - I don't know. All I know is that reading text off a label is not simple.
  21. Thread: Coding

    by Shawn N
    Replies
    5
    Views
    755

    Re: Coding

    Your post is like posting a paragraph of a book and asking us who each character is and what they're doing. Some questions can be answered, but not the more important ones.

    There's just no way...
  22. Re: shifting dropdown of a combobox

    I'm not sure of the step of events a combobox goes through when showing the listbox, but I'm sure there has to be some kind of call for the window to replace it's position.

    Mabye a hook on the...
  23. Replies
    1
    Views
    532

    Try "ByVal 0&" instead of "&H0".

    Try "ByVal 0&" instead of "&H0".
  24. Replies
    175
    Views
    5,566

    View Post

    <3 :wave:
  25. Replies
    175
    Views
    5,566

    I'll take one if anyone's offering. E-mail is...

    I'll take one if anyone's offering. E-mail is sneckelmann@houston.rr.com.

    Thanks in advance. <3<3
  26. Replies
    17
    Views
    2,346

    'Re-Sizes form depending on GetOS Value If...

    'Re-Sizes form depending on GetOS Value
    If Me.WindowState <> vbMinimized Then
    If GetOS = "Microsoft Windows 2000" Then
    Me.Height = 4170
    Else
    Me.Height = 4220
    End If...
  27. Re: well..

    If you already saw so many ideas, why not use those?

    The world needs another P2P protocol like PSC needs another winsock chat client example.
  28. Donate the idle time to Google....

    Donate the idle time to Google.
  29. Replies
    6
    Views
    637

    "hWnd" is an acceptable variable name & I'd...

    "hWnd" is an acceptable variable name & I'd recommend using the window's class name instead of title like EJ12N suggested.
  30. Replies
    7
    Views
    891

    You're not validating that your coding has...

    You're not validating that your coding has actually found the windows. Try something like this:

    Do
    DoEvents
    Room = FindWindow("#32770", vbNullString)
    Sent = FindWindowEx(Room, 0&,...
  31. Replies
    10
    Views
    1,095

    ADO is your one and only option when it comes to...

    ADO is your one and only option when it comes to database work. I'm not sure of the limitations. The only thing I can recommend is that you create a database with as many tables and as many records...
  32. Replies
    10
    Views
    1,095

    Go with ADO. Should be under...

    Go with ADO. Should be under Project->References->ActiveX Data Objects ##.##

    Go with the latest version. That's a good start.
  33. Replies
    10
    Views
    1,095

    Any reason you're using DAO instead of ADO?

    Any reason you're using DAO instead of ADO?
  34. Getting the date/time that a file was created or...

    Getting the date/time that a file was created or last viewed
  35. VaxoP, the only thing I can think of is to get a...

    VaxoP, the only thing I can think of is to get a list of each window and just wait for your new window to open up. If your app is opened after the program shows its new form, then the only thing...
  36. Replies
    41
    Views
    1,345

    Knock him out or hit him enough to knock his...

    Knock him out or hit him enough to knock his senses off balance. Do enough to incapacitate him without causing excessive harm i.e. stabbing him in the head.
  37. Replies
    6
    Views
    1,010

    Nice coding manavo.

    Nice coding manavo.
  38. Replies
    15
    Views
    864

    Yea it's free. You can, or could at one time,...

    Yea it's free. You can, or could at one time, download it from Microsoft's site. If not, it comes free with a lot of VB books.
  39. Replies
    15
    Views
    864

    Just to elaborate, you have the CCE version of...

    Just to elaborate, you have the CCE version of VB5. This version is fully functional (right?) minus the ability to compile.
  40. Replies
    15
    Views
    4,532

    What are these types defined? Dim sid As New...

    What are these types defined?

    Dim sid As New ADsSID
    Dim sec As New ADsSecurity
    Dim sd As IADsSecurityDescriptor
    Dim acl As IADsAccessControlList
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width