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
Type: Posts; User: billboy
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
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...
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...
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...
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()
...
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
great please rate and mark your thread as resolved :)
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...
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...
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
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
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?
Post what you have tried so far....
PowerPacks is simple way of printing an image of a form
...
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
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
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...
Try Me.Hide() instead of dispose
you have an eternal loop
maxheight >0 ?
Check what logic you are really after something tells me you have misunderstood something in the assignment
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...
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
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...
Use stream reader, line by line should not freeze
How are you parsing the file?
[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)...
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,...
see this http://www.vbforums.com/showthread.php?603480-sending-email-to-multiple-addresses
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...
Try this:
If CInt(TextBox31.Text) < 0 Then
Dim result As Integer = CInt(TextBox31.Text) - CInt(TextBox1.Text)
FormatNumber(result.ToString("n"))
...
How about a DELETE FROM WHERE statement ?
DELETE FROM table_name
WHERE some_column=some_value
would this work for you?
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...
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
...
you shouldnt have another Dim writer, just one
post your code
Private Sub WriteFile()
Dim fs as New FileStream(filename,FileMode.Create,FileAccess.Write)
Dim writer As New StreamWriter(fs)
writer.WriteLine("SomeText")
...
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
please mark resolved
and with just 38 posts your learning how to be rude and condesending like some others around here mighty quick. Congratulations
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
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?
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...
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