Insert A PICTURE Into A Forum Post - Inserting Code Into A Forum Post?
Nov 25, 2008
<edit on 10th March 2010.>
Changed thread type to QUESTION. I was then able to mark AS ANSWER the relevent post which now also immediately follows this post and so it is easier to find as suggested by forum user j2associates .
<edit> It is also my 3rd post in this thread, the 8th one up, of my posts, from the bottom ( for now ), as the forum format has changed yet again.I will leave the rest of this post( as is ) purely for historical reasons. I have been on these forums long enough to see 3 forum changes. <edit> 19th May, 2010> Link added to a video on the next line of text.
[code]....
View 1 Replies
ADVERTISEMENT
Jan 5, 2012
Click and see this link if you are interested.url...Click this link to see the NEW way of how to insert a picture into a forum post.
View 2 Replies
Aug 6, 2010
I tried this code but it shows me errors:Picture:
[Code]...
View 20 Replies
Mar 19, 2010
I'm creating an app that edit a post in a ipforum with httpwebrequest and httpwebresponse in vb.net.I use fiddler2 to get the post forms.I successfully create the code to connect to the site the authentication works well and i don't found problems. But to edit a post i don't find how to do it this is the request of the site taken from fiddler:
[Code]...
View 1 Replies
May 19, 2010
I have seen in the past that many aren't familiar with how to insert code so I put a little two-minute screencast (a video done in Flash with no audio),url...
View 15 Replies
Jun 12, 2009
it might help to change the forum name to Visual Basic .NET General Forum. or VB.NET General Forum maybe would help the vba and vb6 developers know this is not for them.
[Code]...
View 1 Replies
Mar 15, 2012
is there any way i can do this? As normally you can use a BB code on the post. But when using POST string it says error. i'm not sure if its because of the characters in the URL which are giving it an error but i've added in front of " etc [URL ="http://url"]LINK[/URL] is the BB Code, how can i make this work please? as i'm currently using this in a text box then postings it.
ive tryed
[URL =""http://url""]LINK[/URL]
[URL ="http://url"]LINK[/URL]
*Had to add space before "="
View 5 Replies
Jun 26, 2010
basically I am trying to expand my skills in visual basic 2010 and i want to find out how to make a kind of drawing program.The idea is when you click somewhere on the form a bit of dirt will appear at the location of the mouse.This code that I wrote did not seem to work:
Public Class city
Private Sub city_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Click
Dim dirt As New PictureBox
[code].....
View 2 Replies
Jul 31, 2011
I am extremly new to this concept of aps.net and vb. all the tutorials I see are c# based or very basic for vb. What I have is a contact forum with some basic information. I got the whole "check if the user has input information correctly down pat how ever Its this whole, connecting to a database (sdf) if in another vb file ands calling that method into aspx file and proessing forum input to say "take this, insert into bla..." I come from java, JSP and J2ee bak ground where its not that diffrent and I dont have all week to read books and take baby steps. I have until tuseday morning to finsih this. Right now I am as far as forum validation....
[Code]...
View 1 Replies
Jan 16, 2009
One of my new year resolution was to make an automatic forum poster script , but till now i dnt have single clue of how to do that, kindly give me an direction to go with or source code of any such software.
View 3 Replies
May 15, 2009
can we write code in vb.net like this in fourm
View 3 Replies
Jun 11, 2009
Having a problem with sending a file via HTTP post in vb.net. I am trying to mimic the following HTML so the vb.net does the same thing.[code]
View 4 Replies
Mar 9, 2012
I just re did my question and added a few other scripts needed to pull everything together This is the small script I am using to receive the post and push the data into the SQL Server (2008 if that matters):
[Code]....
View 2 Replies
Dec 31, 2009
I'am trying to write a program in order to obtain a screen picture for a post review of the running window that should be periodically executed with the tasks manager.
[Code]...
View 1 Replies
Aug 15, 2011
How to code "post your query" functionality in vb.net for a college forum??
View 1 Replies
Jun 16, 2009
I have a little bit of trouble figuring out why I am getting these error messages. Here is the error messages and then the code will follow behind it.The code is taken directly out of the book "ASP.NET 2.0 Everyday Applications for DUMMIES". [code]
View 6 Replies
Oct 18, 2009
I am developing a web site in Visual Basic 2008 using .NET Frameworks 3.5 on an IIS7.0 web server and I am having a problem with a simple error page redirect. Furthermore I only have ftp access to the webserver in a web hosting environment. I am having problems with some errors and not others, mainly error 401 is the problem.<customErrors defaultRedirect="~/Default.aspx" mode="On" > </customErrors> this is the custom errors section of my [URL] file,
View 1 Replies
Feb 22, 2010
times i have seen questions like, how can i search inside my threads or how can i search for threads i have started. I have found Beth Massi`s blog about searching msdn forums by using meta information. I have checked a few other sources about this and wanted to summarize this for anybody who is interested.
If you want to search for threads to which you have contributed use : meta:Search.MSForums.ThreadContributorUserName(Heslacher)
If you want to search for threads you have started :
meta:Search.MSForums.ThreadStarterUserName(Heslacher)
If you want to search for threads which are answered :
[Code]...
View 14 Replies
Aug 31, 2009
I'm supposed to make a game for a friend of mine, or for his site more specifically which has an IPB forum. He wants only users from his site to be able to use the game, so I need to make some kind of authentication so that only registered users can login. I have no idea how to do it and all research turned sour I'd prefer not to have to deal with cookies, but POST instead since I have a wicked awesome wrapper at my disposition
View 3 Replies
Feb 7, 2011
I found this source code for controlling mappoint in .net .Net confuses me so much.
What would it take to convert it back to VB6? The projects seem small in size, but I just dont understand .net[URL]...
View 7 Replies
Jul 23, 2009
I searched all over the this forum and did not find a section to ask my questions about VB6
View 2 Replies
Jan 13, 2010
I have the following functions in my ProceduresControlller:
Function Add(ByVal bpid As Integer) As ActionResult
Return View(GetAvailableProcedures(bpid))
End Function[code].....
I'm loading the Add dialog via jQuery like so:
$("#dialog").load(
"/Procedures/Add",
{ bpid: 123 }[code]....
This is failing because it's calling the Post method (where "covered" can't be empty) instead of the Get. I tried decorating the Get with <AcceptVerbs(HttpVerbs.Get)>, but it doesn't change the outcome.how do I get it to use the Get? I realize I could change the names to not be ambiguous, but I want to know why it won't pick the Get if I'm only passing "bpid".
View 1 Replies
Jun 16, 2009
I've written the code to post the information to a page, however I don't know how to make the post target the iframe I've placed on the page. (I haven't tested this code so I'm not sure if the post even works)
Dim param1, param2, result, url As String
Dim request As HttpWebRequest
Dim paramStream() As Byte[code].....
That is what I have written to post to the website, however I would like the post to affect an iframe which I have placed on the page. I know when you're writing html you can have a target specified in the form tag
<form target="my_iframe" method="post" action="dosomething.php" />
But I wasn't sure if there is one similar to target that I can specify from VB code.Just a note: I am trying to do a post from a ASP.NET page to a PHP page that is contained in an iframe.
View 1 Replies
Jan 28, 2012
For those that are interested but have lost track of where we are about it Here the link for the update, your comments and suggestions[URL]...
View 1 Replies
Mar 1, 2009
I am using ASP.net, I know the basic of VB.net language, don't really want to use HTML, I did not use it since school. I was thinking to create a forum for my mates, I think I will need to create a database and try to play with SQL commands, I thought it should'nt be a lot difficult.
View 5 Replies
Jan 23, 2011
how? i need to delete a thread how do i delete it? i see no delete thread button
View 1 Replies
Jun 10, 2010
I started a little project to make it easier for me to post an image (screenshotby having the program output thehtm page which shows a thumbnail image, the URL, and the HTML text used to post the image here in the forus a question. I've set the name to "index" so that it appears by default rather than the former open browsing
View 4 Replies
Feb 25, 2012
Private Sub btn_Minimze_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_Minimze.Click
Me.WindowState.Minimized()
End Sub
Im trying to minimize a bordless forum. For some reason this code does not work. It says change it to this;
Private Sub btn_Minimze_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_Minimze.Click
FormWindowState.Minimized()
End Sub
But that gives me a error as well "Error 1 Expression is not a method. C:UsersAdmindocumentsvisual studio 2010ProjectsUOK Radio 2.0UOK Radio 2.0Radio.vb 1125 9 UOK Radio 2.0"This works but their is no taskbar icon to click on to load it back up.
Private Sub btn_Minimze_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_Minimze.Click
Me.Hide()
End Sub
View 2 Replies
Dec 18, 2010
I have a visual basic application and I want to be able to paste a string to a forum.
How do i do this so that when you click done, it puts the code in the post box?
View 5 Replies
Aug 29, 2009
I need some advise as to which options I have to go about this problem.I want to to create a simple application consisting of two text boxes.One for username Second for Password And then a submit button.What I want is when I enter user/pass and press submit.It should only give me a single message "Login Succeeded" or "Login Failed". The forum I trying to login into is : warez-bb.org What are my options to go about this?? I have considered Sockets but thats in VB6.Still,I couldnt get it to work.It doesnt even connect warez-bb on port 80.
View 2 Replies