Search results for query: *

  • Users: jigax
  • Order by date
  1. J

    Insert image into PDF?

    Can someone please tell me how can I insert or add an image with vb.net onto the uppser right hand corner of an existing PDF document? Thanks in advance.
  2. J

    PDF barcode?

    I don't know C#. Is there such example in VB.NET?
  3. J

    PDF barcode?

    Sorry. It's third party data. I go on a website which I print work orders from. I would like to generate barcodes for each of these work orders this way I don't have to type when searching my database for these orders.
  4. J

    PDF barcode?

    I would like code 39. The PDF is actually a print file with adobe. I don't have another file with the data. It's not always 30 pages I just gave that example.
  5. J

    PDF barcode?

    Hello everyone, I need some help on getting the following done. I have a two files a pdf and a text file. The pdf has for example 30 pages and the txt has thirty lines with names. I would like to add to the very top of each pdf page the name in barcode format in order. For example page 1 of...
  6. J

    Mapping software?

    I need help building an app that could use mapping software such as mappoint to import a set of address into push pins that I can drag and drop onto a list of tech numbers within the app and later export the list with the newly assigned tech numbers. If someone could point me in the right...
  7. J

    Zip code distance?

    Sounds good to me.
  8. J

    Zip code distance?

    John, Sorry for the confusion I didn't mean to say VBA is trash. I meant that you could delete the thread since this is not a VBA forumn.
  9. J

    Process multiple files?

    Thank you much Matt. That worked like a charm.
  10. J

    Zip code distance?

    Trash? VBA <> VB.net
  11. J

    Zip code distance?

    Can you move this thread to the right section? Thanks.
  12. J

    Process multiple files?

    Hello everyone I made a simple application which converts a PDF to csv. I Need some help on making some changes to have the app read multiple PDF's and convert into one CSV. Heres my code. Imports System.IO.StreamWriter Imports System.IO Public Class Form1 Private Sub Form1_Load(ByVal...
  13. J

    Zip code distance?

    can't this be done via vb.net? I was hoping it can.
  14. J

    Zip code distance?

    Hello everyone, I have an excel sheet that contains a list of zip codes with latitude and longitude. I want to create a UDF in excel taht will calculate the distance between two zip codes. I have the formula to calculate the distance my problem is I'm not sure how to have a UDF look in another...
  15. J

    Text in quotes?

    I managed to get what I wanted doing this. line = Replace(line, ";", "") writer.Write(Trim(Mid(line, 9))) Please correct me if theres a better way of doing this.
  16. J

    Text in quotes?

    Hello, How could I get text inside quote? j1[1] = "EXTRACTME"; I only want to get the word EXTRACTME. Thank you.
  17. J

    Streamreader or Streamwriter?

    I'm still a bit confuse i will give you an example. below is a sample txt file that i'm converting to csv by adding a , and then writer.WriteLine() fot every service order. Service Order sensitive data**** sensitive data**** sensitive data**** sensitive data**** NEW BRITAIN, CT 06053 <-----...
  18. J

    Streamreader or Streamwriter?

    It doesn't exaclty say "City State zip" it has a city name state name and zip. :/
  19. J

    Streamreader or Streamwriter?

    Is there a way to format or split a line? for example i have a line with City State Zip i would like to put a , in between each so that it shows on seperate columns. But my problem is that not all lines have space. My first thought was replace space with , but it will screw other things up. Thanks
  20. J

    Streamreader or Streamwriter?

    Yes you have given me a few examples :) thank you much for them. Here is my code I think I'm doing the right thing but it's not working out how I would like it to. Using reader As New IO.StreamReader(OpenFileDialog1.FileName.ToString) Using writer As New...
Back
Top