Search results for query: *

  1. D

    Paste PDF to textbox

    I'm pretty sure (although not 100% certain, so correct me if I'm wrong) that the picture box has no PDF support what so ever. To my understanding you'd either need a 3rd party API or a good knowledge of the PDF file structure so you could get it to display as a TIFF or something in the picture...
  2. D

    Inserting String into another

    Yeah, you're right. I didn't see that second spot.
  3. D

    Inserting String into another

    Wouldn't you just be able to append it to the end like so? My string = richtextbox1.text & "&fmt=18"
  4. D

    Question using Notepad

    I couldn't say if its new or not, I didn't start programming until .NET 2003 and haven't really touched VB6 or anything before that. I'm glad that was able to work for you!
  5. D

    Question using Notepad

    Do still get the error if you write it like this? MessageBox.Show("Hello " & _ "World")
  6. D

    PDF to image...

    To my knowledge, .Net can't handle PDFs on its own. What we have where I work is called LEADTools. And while its expensive, it gets the job done decently. Another one that I tried and worked well is AdultPDF. Its quite a bit cheaper and has a version with a GUI, a command line version and an...
  7. D

    Changing Datasets in an Expression

    I'm creating a report to track sales for a client. On the results that the report displays, one of the fields is a link to another report. On the navigation of that, I'm passing the DealerId to the other report so it can display information about that dealer, however, if they don't enter a...
  8. D

    I'm in the wrong place?

    I might be wrong, but I think anything having to do with mobile programming would go into one of the Compact Framework forums.
  9. D

    Using GDI+ in a class library

    You're a life saver John. I guess I was expecting it to add that automatically like it does for my windows forms projects. Thanks!
  10. D

    records getting lost when filtering group

    Could you post your code so we can see better what is going on?
  11. D

    Using GDI+ in a class library

    I'm trying to create a DLL that I could plug into multiple applications to do various image manipulations. When creating my class library project though, I noticed that I can't import System.Drawing. Is this not allowed at all since there really isn't any UI going with the solution, or is...
  12. D

    Logical Operation

    I'd probably use an AndAlso for this. If 1 = 1 AndAlso 1 = 1 AndAlso 1 = 1 AndAlso 1 = 1 Then Debug.Write("Value is true") Else Debug.Write("Value is false") End If If 1 = 1 AndAlso 1 = 1 AndAlso 1 = 1 AndAlso 1 = 2 Then...
  13. D

    need help convert C to VB.Net

    Could have sworn he said C#, but looking back I see you're right. Sorry.
  14. D

    need help convert C to VB.Net

    There are many sites, along with software that you can use to convert from C# to VB and vice versa. Here is a site that I use whenever I have to do conversions, but don't feel like doing it myself.
  15. D

    Inserting an 'ENTER' into a textfile

    Is there any difference between using Environment.NewLine and ControlChars.CrLf?
  16. D

    Simple closing form question

    I think JuggaloBrotha is right and it should be AndAlso. This is something that a coworker sent to me that helps me remember the difference between the two:
  17. D

    Boolean Swap

    I disagree. I was practically a beginner when i started coming here, and everyone here was of immense help. And everyone is thinking this is homework, at least this is my reason for thinking it, because the file you attached is called "Lab Exercise Week 10.doc". That sounds like an assignment...
  18. D

    What could be meant by a "Shell" application ?

    I've always heard of it as shelling out to an application. As in, you call it as using the line Shell("C:\run.bat", AppWinStyle.NormalFocus) But I've never heard of a Shell application. Maybe its the same thing?
  19. D

    Generic Error occured in GDI+

    GDI+ is notorious for giving vague errors. The majority of them that you'll see from it are either the generic error you received or one saying that an out of memory exception occurred, even if you have plenty of memory left. If you post the part of your code that is erroring, we can look...
  20. D

    validate password??

    That depends on how you're storing your passwords. Will they be in a database? A text file? What?
Back
Top