Search:

Type: Posts; User: billboy

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    105

    Re: VB 2010 and database on website

    yes you can

    here is a link that might help you

    http://www.codeproject.com/Questions/132320/Connect-to-a-website-database-from-VB-NET-app
  2. Replies
    10
    Views
    278

    VS 2012 Re: How can i make a payment system

    Sorry that doesnt help me much at all

    do you want people to pay for your actual program
    or when someone is in your program you want them to be able to pay for something?

    Try and give a more...
  3. Replies
    12
    Views
    244

    Re: Help reading from csv file!

    Like jmcilhinney said, you have all the parts in multiple ways of doing what you need. As someone who is still learning myself I would take his suggestion and rather then just try to get what you...
  4. Replies
    2
    Views
    137

    Re: Help for academic project.

    Thats a pretty broad question and looks like your first post. A suggestion for you would be to ask something specific, post some code of what you have done so far. If its not working point out where...
  5. Replies
    12
    Views
    244

    Re: Help reading from csv file!

    Here is some code to read the file using TextfieldParser and create a DataTable using the openFiledialog to select the file you want to read


    dim table as New DataTable
    Public Sub ReadData()
    ...
  6. Replies
    3
    Views
    143

    Re: Issue with VB program

    try and post your code in code tags
    example:

    your code

    As to the question i think this your problem

    numofstudents = ("enter students")
    For i = 1 To numofstudents
  7. Re: My.Application.Info.DirectoryPath

    great please rate and mark your thread as resolved :)
  8. Re: My.Application.Info.DirectoryPath

    Please dont say things like "I tried it it dosnt work"
    post what you tried, often times you may think you tried it correctly but made a mistake or were confused about something(trust me being new...
  9. Replies
    10
    Views
    278

    VS 2012 Re: How can i make a payment system

    Then follow dunfiddlin link, paypal itself will show you how to implement that

    i am still confused though you want people to be in your program and pay for it within the program itself?
    So i am...
  10. Thread: Printing Help!

    by billboy
    Replies
    5
    Views
    144

    VS 2010 Re: Printing Help!

    Then re start what you did.

    There are numerous examples for what you want to do, just google

    here is one that should get you going

    http://vbcity.com/forums/t/157103.aspx
  11. Re: My.Application.Info.DirectoryPath

    Did you try my suggestion? it doesnt look like you made the change based on the code you just posted. I understand our problem.

    You are missing a quote

    try what I suggested please
  12. Replies
    10
    Views
    278

    VS 2012 Re: How can i make a payment system

    need some more details, what do you mean "for my program i wanna add paymnt service" ?
    Do you want people to pay for your program?
  13. Thread: Printing Help!

    by billboy
    Replies
    5
    Views
    144

    VS 2010 Re: Printing Help!

    Post what you have tried so far....

    PowerPacks is simple way of printing an image of a form
    ...
  14. Re: My.Application.Info.DirectoryPath

    not sure but think you missed a closing quote


    dbSource = "Data Source= (My.Application.Info.DirectoryPath & "\AddressBook.mdb;Jet OLEDB:Database Password=123;")"

    try that
  15. Replies
    10
    Views
    258

    Re: Finding max value of textbox

    How about putting the textbox values in an arrray and just use the max function. once toy find the mx value then se the height
    here is an example:

    http://www.dotnetperls.com/math-max-min-vbnet
  16. Replies
    3
    Views
    161

    Re: Textbox update from other form

    I havent looked at your project but you can't load something from something that has not been created yet until you load form1 with the textbox it doesnt exist

    So if i understand correctly in...
  17. Re: Close / Hide / Dispose A Form Issue

    Try Me.Hide() instead of dispose
  18. Replies
    8
    Views
    412

    Re: Visual Basic Homework Question

    you have an eternal loop
    maxheight >0 ?
    Check what logic you are really after something tells me you have misunderstood something in the assignment
  19. Replies
    0
    Views
    118

    VS 2008 Help with ClickOnce Deployment

    I have migrated my project over from 2005 to 2008 and its been a while since I last deployed the project. I have made some updates and want to re-deploy it.

    do I need a "Certificate" I am a bit...
  20. Replies
    4
    Views
    171

    VS 2008 Re: Problems with database connection

    This will depend on how you are connecting to your database and since you havent shown any code we have no idea.
    Show us how you are connecting
  21. Re: Newbie here, I have two quick questions VB2010

    I would recommend that you go through this site,
    http://www.homeandlearn.co.uk/net/vbNet.html

    to answer your question

    Dim declares the variable

    Double , decimal ,integer are type of...
  22. Replies
    4
    Views
    162

    VS 2010 Re: Parsing large textfiles?

    Use stream reader, line by line should not freeze
  23. Replies
    4
    Views
    162

    VS 2010 Re: Parsing large textfiles?

    How are you parsing the file?
  24. Re: Sending mass amount of mail limit? + mail provider.

    [QUOTE=sapator;4377333]www.http://dyn.com/

    Here is how I do it I read the addresses into an array:



    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)...
  25. Re: Sending mass amount of mail limit? + mail provider.

    Who or what is dyn? and if they said you can send 120k in one day then why would you have a problem with 3-5 k? not sure what the question is

    you can send them one by one just use a for loop,...
  26. Re: Sending mass amount of mail limit? + mail provider.

    see this http://www.vbforums.com/showthread.php?603480-sending-email-to-multiple-addresses
  27. Re: Sending mass amount of mail limit? + mail provider.

    Constant Contact and Vertical response are two companies I use for some of my different business bulk emailing

    You need an efficent way to handle Opt out

    Most ips will consider you spam if you...
  28. Replies
    3
    Views
    143

    Re: Calculation not working correctly

    Try this:


    If CInt(TextBox31.Text) < 0 Then

    Dim result As Integer = CInt(TextBox31.Text) - CInt(TextBox1.Text)
    FormatNumber(result.ToString("n"))
    ...
  29. Replies
    5
    Views
    171

    VS 2010 Re: Delete SQL records based on Datatable

    How about a DELETE FROM WHERE statement ?

    DELETE FROM table_name
    WHERE some_column=some_value

    would this work for you?
  30. Replies
    5
    Views
    171

    Re: How to split email string?

    There are lots of great examples around the internet, just google "Split string" in vb.net

    Here is one great place to starthttp://www.homeandlearn.co.uk/net/nets7p7.html



    'the text string...
  31. Replies
    5
    Views
    190

    Re: Help with XML in visual basic.

    What is the problem? where does your code go wrong?

    Looks like mode 1 and 3 are the same

    with that said this might help you a bit
    ...
  32. Re: need help with FileStream for writing text

    you shouldnt have another Dim writer, just one

    post your code
  33. Re: need help with FileStream for writing text

    Private Sub WriteFile()
    Dim fs as New FileStream(filename,FileMode.Create,FileAccess.Write)
    Dim writer As New StreamWriter(fs)
    writer.WriteLine("SomeText")
    ...
  34. Re: need help with FileStream for writing text

    Not sure exactly what your looking for

    but the file stream write has a writeline function

    writer.writeline("This is a test")


    hope that helps
  35. VS 2010 Re: The Process Cannot Access the File Because It Is Being Used By Another Process

    please mark resolved
  36. Replies
    7
    Views
    271

    Re: Form.ShowDialog() Hidding problem

    and with just 38 posts your learning how to be rude and condesending like some others around here mighty quick. Congratulations
  37. VS 2008 Re: Help with File Upload and Deployment

    Its just the file name of the file the user uploaded to begin with so i dont think security is an issue in this case

    Thanks
  38. VS 2008 Re: Help with File Upload and Deployment

    I saved the file name and path to a HiddenFiled value at the time of fileupload this seems to persist the path and is working thus far

    Is there anything wrong with doing it this way?
  39. VS 2008 Re: Help with File Upload and Deployment

    Thank you
    I am kind of learning as I go here. So it clears makes sense. I will read up on session and view state ironically those are the topics for tonights videos on ASP.NET tutorial videos I have...
  40. Replies
    2
    Views
    107

    VS 2008 Re: ComboBox Text Value

    Never mind I knew i was having a brain fart
    i was executing code in a for loop that never had anything

    sorry to waste anyones time
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4