Search:

Type: Posts; User: HerkyBird

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    659

    VS 2012 Re: Create email with link to file

    Not certain this will work, but it might be worth a try:

    You may be able to preserve the XML formatting by enclosing the XML text (with HTML=true) with the <pre> tag -- preformatted text. This...
  2. At wit's end: Need a 3-d array of a Class... how to ReDim it to the actual #'s?

    Disregard... please delete this thread.
  3. VS 2010 Re: Force Excel to use updated version of DLL

    Okay, strange. If I change the Assembly Version (Project Properties > Application > Assembly Information, then everything updates. Seems to work; not sure if this is the approved solution to where...
  4. VS 2010 Force Excel to use updated version of DLL

    ((This is both a Visual Basic 2010 and an Excel 2010 question -- if it should be in the other forum, please move it & accept my apologies!))

    I'm rewriting some parts of an existing project, and...
  5. Replies
    2
    Views
    1,107

    Re: Send SMS to vb.net program

    You can send an SMS to an e-mail address; at that point your program would only need to be able to receive e-mail messages. Not a quick simple task there, but you can find threads & Code Base...
  6. Re: Create DLL with VB 2010 to use in Excel 2010 VBA

    THANK YOU!

    That works -- exactly what I needed.
  7. Re: Create DLL with VB 2010 to use in Excel 2010 VBA

    Oh, okay... I guess I thought that checking the "Register for COM interop" box would accomplish that. Is this something that VB6 did & can't be done in VB2010? Or is better not to?

    Anyway:
    In...
  8. [RESOLVED] Create DLL with VB 2010 to use in Excel 2010 VBA

    Okay, I'm at wit's end here. Searching for answers has come up with many ways of doing this, which are frequently inconsistent and often referring to some variation of the problem which seems like...
  9. VS 2010 Re: Joining 2 arrays of Bytes together

    Thank you -- knew it had to be something like that, but I sure was at a loss.

    Many thanks!
  10. VS 2010 [RESOLVED] Joining 2 arrays of Bytes together

    Trying to write some code to pass things to a web server in the format that it expects. Essentially we have a salt plus some other stuff that we hash together, and then pass the salt and the hash in...
  11. VS 2010 Re: Copy text from webpage in (unseen) web browser - help please?

    Looked at Google API, and if there is a way to access the stuff I'm looking for, it isn't obvious. Lots of API's for various things, but to see their report on the weather & such, I don't see where...
  12. VS 2010 Re: Copy text from webpage in (unseen) web browser - help please?

    I'm only trying to pull some basic info from the data, not the graphics & such. So just the text that I can parse is what I need.

    I hadn't thought about going into the Google API -- need to...
  13. VS 2010 Copy text from webpage in (unseen) web browser - help please?

    I'm looking to load a simple Google search query into a web browser that is not displayed on screen, and then get the text of the page (similar to Ctrl-A, Ctrl-C from the keyboard) to work with. ...
  14. VS 2010 Re: Screenshot, or a better alternative?

    Wow -- that solution absolutely, totally, completely ROCKS!

    Awesome help -- many many thanks!

    (Now, let me go find the socks that just got knocked off there... I'm sure they're around here...
  15. VS 2010 [RESOLVED] Screenshot, or a better alternative?

    I have a program that creates html output with a table that has an individual user's schedule for the day, and I'd like to be able to create a graphic file that I can e-mail out showing that schedule...
  16. Re: Initializing DataRow to initial value, and general database question

    Hello again,

    Shaggy - thanks for the "= Nothing" idea! That works perfectly for what I needed. I'll mark the thread solved with that advice.

    dunfiddlin - very fair point about being careful...
  17. Re: Initializing DataRow to initial value, and general database question

    Thanks for the reply, dunfiddlin!

    While I understand that I could enclose the larger amount of code within the Try/Catch block as you suggested (5 rows inside the Try), but I don't want to risk...
  18. [RESOLVED] Initializing DataRow to initial value, and general database question

    I'm starting to poke around with using SQL to store my data, and the following code seems to be working well, up to a point. The simple test database that it refers to has CustomerID's of A1, B2,...
  19. Re: Process cannot access a file because it is being used by another process

    I use the following code, which is generally successful:

    Function SafeFileDelete(ByVal FileName As String) As Boolean
    If My.Computer.FileSystem.FileExists(FileName) Then
    ...
  20. VS 2010 Date/Time that program was Published + Version #

    Is there a way for the program to see the date & time that it was published, as well as its version #? For the major versions it's easy enough to hard-code it by hand, but it would be nice when I...
  21. VS 2010 Re: Making what is Public in Form1 also Public to Form2

    Hi Kevin,

    I appreciate your help. I looked at the project & the explanation on the msdn page, and I'm having a really hard time wrapping my head around what's going on there. I won't discount...
  22. VS 2010 Re: Making what is Public in Form1 also Public to Form2

    Thanks for getting back to me so quickly, and I'm sorry to beg for more help, but I didn't follow your answer there. Small words, short sentences, please. Here is the code that I have -- well, not...
  23. VS 2010 Making what is Public in Form1 also Public to Form2

    :confused: Incredibly basic question I'm sure, but I'm stumped:

    I've got a program that runs from one Windows form, Form1, with stuff declared all in that class: public variables, public...
  24. VS 2010 Re: How to get text from a text file and save it in the application?

    Tutorial here.
  25. Replies
    4
    Views
    10,477

    Re: Zipping & Unzipping Using Shell32.dll

    Basic question, I know, but in the first line is the admonition to



    How exactly does one do that, please?

    Many thanks!

    Edit:
  26. VS 2010 Re: Removing items from a List (of t) with For Each

    Man... that makes sense I guess, but not exactly intuitive (at least to my sense of intuition). Nor explained much at all in the books & reference material I could find. Dang good thing that you...
  27. VS 2010 Re: Removing items from a List (of t) with For Each

    Wow -- you're both absolutely right -- I misread that distinction totally & entirely! THANK YOU for setting me straight. I was working off the assumption that a "structure" in VB is like a "type"...
  28. VS 2010 Re: Removing items from a List (of t) with For Each

    Okaaaay... the lightbulb is coming on now for something that E. Giraffe mentioned above in post #4. I had no idea that if I wanted to change something in the structure (say, change the file name or...
  29. VS 2010 Re: Removing items from a List (of t) with For Each

    Thanks for the answers!

    Being comfortable with arrays, my first inclination is to go with Shaggy's answer, rather than creating a second list & copying it back over, and then worrying about...
  30. VS 2010 [RESOLVED] Removing items from a List (of t) with For Each

    Probably an obvious solution, but the search terms I used didn't show me an answer, so...



    Public Structure ReportOrderType
    Public ReportName As String
    Public ReportDate...
  31. Replies
    1
    Views
    4,694

    Put one graphic into a DataGrid

    I have a DataGrid in a Silverlight project, fed by an ObservableCollection, and I'd like to have in one column an entry for each row that is either a particular graphic (same graphic for each item),...
  32. Re: DataGrid not updating when data is updated

    AAAaaahhhh!

    That would have taken me a while (like, several months) to figure that out on my own. Thank you for the help! I've got the beginning of the code to implement that written, and...
  33. [RESOLVED] DataGrid not updating when data is updated

    Newbie at Silverlight, working in Silverlight 3 & Visual Studio 2010, and I've reached the "bang head against wall" point with a small project. What I've got is some data in the LineList variable,...
  34. VS 2010 Re: Best option to receive emails in a VB program

    Don't need to deal with attachments coming TO the program, thankfully, so I won't need to deal with that complexity. Looks like this post and the link inside it is the most promising, so I'll pursue...
  35. VS 2010 Best option to receive emails in a VB program

    Hello,

    I've seen that there are several options out there for being able to send email from within a Visual Basic program, but I've seen much less written about how to use the program to receive...
  36. Replies
    6
    Views
    19,530

    VS 2010 Re: Rename Files on Server, via FTP

    THANK YOU, Chris!

    That was exactly what I needed; I'd made an error with the directories, and that was what was throwing everything off. That code does exactly what I need, and I appreciate the...
  37. Replies
    6
    Views
    19,530

    VS 2010 Re: Rename Files on Server, via FTP

    Hi Chris,

    Thanks for responding! That command shows up in the intellisense (and other places I've seen it documented) as working on a directory only, not a file. I tried implementing it as you...
  38. Replies
    6
    Views
    19,530

    VS 2010 [RESOLVED] Rename Files on Server, via FTP

    Hello,

    A while back I asked about going beyond basic FTP upload/download on this thread, and the response I got about using FtpWebRequest was very helpful. Now I'm looking at something that...
  39. Replies
    2
    Views
    4,560

    VS 2010 Re: FTP: Create Directory

    Cool, thanks -- I'll pursue that. I'd seen FTPWebRequest, but from the documentation I saw on it I wasn't sure that it was what I needed, or at least not the simplest way to go about it. I'll go...
  40. Replies
    2
    Views
    4,560

    VS 2010 [RESOLVED] FTP: Create Directory

    Thanks to this thread I found out about a very straightforward way in VB 2010 to upload & download files via FTP (shown below). What is the most straightforward way to create a directory on my FTP...
Results 1 to 40 of 43
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width