Click here to Skip to main content
       

Visual Basic

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page  Show 
Questionread mail from yahoo using yahoo api in vb.netmemberpuvanar7 Dec '12 - 23:01 
how to read email in yahoo inbox using vb.net and yahoo api
AnswerRe: read mail from yahoo using yahoo api in vb.netmemberEddy Vluggen9 Dec '12 - 23:14 
Start reading here[^], and download the clientlibraries for VB as mentioned on the page. Bastard Programmer from Hell If you can't read my code, try converting it here[^] They hate us for our freedom![^]
QuestionMissing ToolbarmemberNo-e6 Dec '12 - 6:09 
I have a form that had a tool bar on it with a few buttons. I do not know what I did but now I can not see the toolbar at all. I can still select in the properties list and change settings on it, such as size, location, width and all that stuff but no matter what I do I still do not see the...
AnswerRe: Missing ToolbarmemberPeter_in_27806 Dec '12 - 13:08 
Long shot. Something else on top of it in z-order?   Cheers, Peter Software rusts. Simon Stephenson, ca 1994. So does this signature. me, 2012
AnswerRe: Missing ToolbarmemberEddy Vluggen6 Dec '12 - 14:23 
Install "WinDiff" and compare the two .Designer.vb files. Bastard Programmer from Hell If you can't read my code, try converting it here[^] They hate us for our freedom![^]
QuestionHow to insert xml to dataset.xsd using vb.net?memberAkbarblack5 Dec '12 - 19:20 
this is my Problem: I created a dataset xsd called dataset1.xsd,and xml schema called transaksi.xml   transaksi.xml:   <?xml version="1.0" encoding="Windows-1252"?> <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified"...
QuestionDrawing an image onto a formmembertuffhamster2 Dec '12 - 8:13 
I am having problems exporting a form and all its contents as an image. I just get a picture of the form and nothing of its contents. If I print the form, everything is there, but is i save as jpg, nothing. I have been told to use the draw command but all I can see is how to draw lines and circles etc. Is it possible for me to draw an imported jpg image onto a form. Currently I have 4 portrait pictures all added into individual picture boxes.
 
Thanks for any help.....
AnswerRe: Drawing an image onto a formmemberEddy Vluggen3 Dec '12 - 0:53 
Set the form to owner-drawing, and check out the Paint event of the form; You can draw your bitmap on the Graphics object. Bastard Programmer from Hell If you can't read my code, try converting it here[^] They hate us for our freedom![^]
Questionprogramming thesis VB.netmemberenzomatriz30 Nov '12 - 14:48 
dear friends,   I would like to ask some help. I am a beginner in vb.net programming and right now we have a thesis in school to develop an Application of Programming to Chemistry Dama. I already have a sample codes that I attached below.   The problem that I have right now is how can...
AnswerRe: programming thesis VB.netmvpDave Kreskowiak1 Dec '12 - 3:17 
Chips? Checkers? Moves?? Capture?? What in the hell are you talking about??   And I'm getting the vibe that this should have been posted in the Algorithms forum. A guide to posting questions on CodeProject[^] Dave Kreskowiak
AnswerRe: programming thesis VB.netmemberZaf Khan1 Dec '12 - 10:01 
Hello Enzomatriz,   It looks like a game of checkers? And you say your code to take one chip works?   Ok so as I see it maybe you can place the (YOUR CODE) code block which takes the oppositions chips in a LOOP where, after taking one chip you see if there are other chips to take...
QuestionTAPI3 Call Id ??membertrashambishion30 Nov '12 - 11:20 
I would like information to be able to design an application that will show me the number, date and time of the person to call me by phone. A Caller ID using TAPI3
AnswerRe: TAPI3 Call Id ??memberEddy Vluggen30 Nov '12 - 23:36 
Try This[^] article. Bastard Programmer from Hell If you can't read my code, try converting it here[^] They hate us for our freedom![^]
GeneralRe: TAPI3 Call Id ??membertrashambishion4 Dec '12 - 9:30 
I have a problem with the project i need load the modem in a combobox and then be able to select the device with a button to put it in the listening mode.   When i do a new project and add the class gives me this error:   Interop type 'TAPIClass' cannot be embedded. Use the...
GeneralRe: TAPI3 Call Id ??memberEddy Vluggen4 Dec '12 - 10:12 
Can you post a snippet of the code where the error occurs? Bastard Programmer from Hell If you can't read my code, try converting it here[^] They hate us for our freedom![^]
GeneralRe: TAPI3 Call Id ??membertrashambishion6 Dec '12 - 12:19 
Hi man thx for you help i fix the problem, the end i can't see who call, jajaja..   Pls help with this problem...   I am desperate looking for someone to help me in a project that I want to perform, I have a Windows XP sp3 activated the routing and remote access service...
QuestionLoad pdf into picturebox binding to datasetmemberwaner michaud30 Nov '12 - 9:10 
Hi, Can anyone guide me on how to do the following cenerio: I have a table: ID type int Data type image   Now on a form in vb.net, I drop the control data field as a picturebox.   I want to double click on the picturebox to load a pdf file so that i can store in the table.   a...
AnswerRe: Load pdf into picturebox binding to datasetmvpDave Kreskowiak30 Nov '12 - 12:43 
Since a PictureBox control knows nothing about the PDF file format, it can't render one at all.   You'll have to use another control, such as PdfSharp or some other PDF Viewing control. A guide to posting questions on CodeProject[^] Dave Kreskowiak
GeneralRe: Load pdf into picturebox binding to datasetmemberwaner michaud4 Dec '12 - 9:13 
thanks for your response.   I load the pdf file into webbrowser control. Now i need to save into a table. the form in question already has a dataset binding into it. I neesd to take the pdf file that's showing in the webbrowser control and to be saved with every control on the form.  ...
GeneralRe: Load pdf into picturebox binding to datasetmvpDave Kreskowiak4 Dec '12 - 12:31 
You can save the contents of the PDF file to the database the exact same way you save any other image format. Like this[^] or this[^]. A guide to posting questions on CodeProject[^] Dave Kreskowiak
QuestionSaving a form and its contents as an imagemembertuffhamster30 Nov '12 - 4:37 
I have a form that has various pictureboxes that are populated by the user. Once the form has all the pictureboxes full, the user needs to save the whole form and its contents as a jpg. The only problem is that the only thing that is saved is the picturebox.1. Case 1 ...
AnswerRe: Saving a form and its contents as an imagememberEddy Vluggen30 Nov '12 - 23:41 
tuffhamster wrote:I have a form that has various pictureboxes that are populated by the user. Once the form has all the pictureboxes full, the user needs to save the whole form and its contents as a jpg. Call the DrawToBitmap[^] method of the form. Bastard Programmer from Hell If you can't...
GeneralRe: Saving a form and its contents as an imagemembertuffhamster1 Dec '12 - 3:18 
I have used the drawtobitmap as suggested but still only copies the form background. There are about 8 picture boxes in the form but none of these are saved within the jpg. Here is the code.   Private Sub Button7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
GeneralRe: Saving a form and its contents as an imagememberEddy Vluggen1 Dec '12 - 4:04 
As should be; that's how the stuff works. If you want a "mashup", you'll have to draw the pictureboxes by hand, on the forms' paint event. Bastard Programmer from Hell If you can't read my code, try converting it here[^] They hate us for our freedom![^]
QuestionActivex can't create object error in VB6.0memberPradeep Londhe29 Nov '12 - 22:49 
Can anybody help me to solve this problem... I am facing the below problem while trying to send mail in Vb6.0   Problem was encountered when trying send mail- ActiveX component can't create object.   Would Appreciate help...

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   


Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 17 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid