[2008] Convert .xls To .pdf?
May 26, 2008
I wish to convert each sheet of an Excel Worbook in PDF (using Acrobat Distiller and printing in the same folder).
Dim workbook1 As Microsoft.Office.Interop.Excel.Workbook
Dim excelapp As new Microsoft.Office.Interop.Excel.Application
workbook1 = excelapp.Workbooks.Open("C:fichierPDF.xls")
[code]....
The PDF file is printing but is wrong and cannot be opened.
View 5 Replies
ADVERTISEMENT
Nov 25, 2011
How to convert this vb 6 codes to vb 2008 or 2010, this program is IO 18F2550, please find attached file.
View 1 Replies
Aug 4, 2009
convert this from vb6 to the new vb 2008 Here is the call to the function I am having problem with:
[Code]...
View 2 Replies
Apr 2, 2010
I'm currently coding a game and i've put some sounds in it. I want to convert those mp3/wav files to a DLL file then i can merge it with the game How can i do this ?
View 1 Replies
Aug 27, 2009
is there an app for this or an Online site that does it ? i know you can do vb to c# but vb 06 to 08 ?
View 2 Replies
Jun 26, 2009
i downloaded a vb 6 chat client so me and my friends can talk but i want to edit it
View 2 Replies
Dec 11, 2008
Is it possible to convert vb.net 2008 to 2005? My teacher is a pain in the ass and is still working with 2005 and he doesn't want to change to 2008, any way I can convert it to 2005 without copy past all the piep
View 7 Replies
Nov 11, 2010
I had web application (website?) that was started in VS 08 (this was the VS 08 that comes with SQL Server 2008 - not the full-blown version) and I loaded it in to VS 2010 (this is a recent Professional version upgrade from VS 05 Pro). The web app is a HealthVault application created by the HealthVault Application Manager that ships with the HealthVault SDK.
So, I loaded it in to VS 10 and VS 10 converted it to a VS 10 project and now it won't build. The problem is in the web config file and I normally don't work on web applications so I am completely lost.[code]...
View 1 Replies
Dec 30, 2009
How to Convert Code from Visual Basic 6.0 To Visual Basic.Net 2008.
View 2 Replies
Mar 17, 2010
I am trying to convert an old VB 6 project to VS 2008, but it is giving me the following error:
Quote:
Upgrade failed: Exception occurred: Could not load referenced component:TABCTL32.OCX (1.1.0)You need to install this component before you upgrade the project.It is recommended you install VB6.0, with all referenced components, and ensure the application compiles and runs before upgrading.I don't have VB6.0, so how do I work around this?
The files I am trying to convert are here:
www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=65071&lngWId=1
View 6 Replies
Dec 28, 2011
I am having a trouble with my project I want to convert this vb6 codes to vb 2008...can you help me??
here's the codes:
[code]...
View 1 Replies
Jan 22, 2010
I am customizing a legacy VB code. It was using PrintLine(1, VB6.Format(Selected_Message, "#0")).Selected_Message is declared as Short. I couldn't find what VB6.Format() in this instruction mean. Can anybody tell me teh meaning and how to convert to vb 2008? I googled but didn't find it.
View 4 Replies
Mar 9, 2010
I'm trying to create a combobox with lists of radio stations in it so when user selects lets say "rap" it will play rap radio station which I have put in the code ( I did something liek this for VB6 long time a go just wanted to knwo if any one can make this code work for VB2008 ) .
[code....]
View 6 Replies
Jun 10, 2009
I need to take a picture, test.jpg and read it in and convert it to a string.
The string is going to be sent via email attactment where i need it to work as a .jpg when i download the file attachment.
I can only build the file attachment using a String so i will need to convert the picture into a string, without losing any of the data bytes.
View 3 Replies
Jan 21, 2010
I borrwed some code to capture a image with the onboard Web Cam of my Laptop. It works fine, but is is saving the image as a Bitmap, how can i convert the image to a JPG file? [code]
View 1 Replies
Nov 25, 2009
Could someone convert this code to VB
arrayfunction(array, row, col);
for(int i=0; i<row; i++)
{
[code].....
View 7 Replies
Jan 22, 2010
I have a datagridview with 3 columns. the second column is a read only . When I leave column 1 I would like to go directly to column 3.For this, I got following codes from somewhere but I need these codes in vb.net format, please help or suggest some other method
Code Snippet
void dataGridView1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyData == Keys.Tab)
[code]....
View 6 Replies
Mar 24, 2010
in textbox 1 date is cming from datetimepicker1
and in textbox 2 date is coming from textbox1 but i want date in textbox2 in format DD/mm/yyy
my code
Date Time Picker
TextBox1.Text = DateTimePicker2.Value.Date
Textbox1 Changed
TextBox2.Text = TextBox1.Text
View 3 Replies
Sep 8, 2010
can't seem to find any code nor an explanation on how the file types differ (Technically).
View 5 Replies
Sep 28, 2011
just having a bad time about this stuff.i need to multiply both textbox1 and 2 to textbox 11. is it possible?
attach is the code and the program looks like
View 5 Replies
Aug 26, 2011
i want to convert old vb6 project to Vb.Net 2008. I converted everything except 'ANY' datatype.
View 6 Replies
May 4, 2010
Looking for the function to convert 8.5% to .085
View 3 Replies
Sep 19, 2009
i want to make a batch file to be converted to exe file by vb 2008 code the file in the same place of the program
View 3 Replies
Jul 13, 2009
ive got some difficulties converting hexadecimal.. for example...i got this group of hexadecimal which is 31 33..when its converted to CHR its 1 and 3 respectively... to make it clearer its 31(hex) = 1(chr) and 33(hex) = 3(chr) but i want to make it 13 instead...because the program i wrote is reading and writing out the value 1 then 3 instead of 13 together..how do i do it???
View 4 Replies
Apr 7, 2009
I have a dll that was compiled in Borland C++ 5.5 that I wish to use in a vb.net 2008 project. The problem is that Borland is OMF and MS requires COFF.
Can you direct me to how to convert from OMF to COFF, or how to create a wrapper. I fumbled with pinvoke a little bit, but with no success.
View 3 Replies
Mar 15, 2010
Anyway, someone has write this code for me: >>
Function Convert(ByVal text_inp As String)
Dim value As String = text_inp
Dim separator As String() = Split("/>")
[Code].....
View 9 Replies
Mar 19, 2010
I have this
VB.Net
Function Convert(ByVal Input As String)
Dim value As String = text_inp
[Code]....
View 1 Replies
Sep 28, 2010
I'm using vb.net 2005. How do convert this date / time 21/08/2008 00:21:00 to a DateTime object ?
View 4 Replies
Feb 3, 2011
can we vb.net 2008 to vb.net 2005 if it is possible then how
View 2 Replies
Nov 25, 2010
I have a few projects developed in VS2010 but would like to share them with a fellow programmer who is using VS2008.
View 3 Replies