Engine Is No Longer Provided With AutoCAD OEM Installation Media
Nov 26, 2010
I have been using Visual Basic for Applications (VBA) in MS Office packages and in Auto CAD. The Visual Basic for Applications (VBA) engine is no longer provided with AutoCAD OEM installation media, but it supports VB.net.I am bit confused of Visual Basic 2010 and VB.net Which version shall I go for to learn VB.net.
View 2 Replies
ADVERTISEMENT
Dec 16, 2011
It used to be that the VB6 installation tool automatically recognizes a MS Access dependency and includes the appropriate DLL(s). In VB.Net (2008) I am struggling with the concept of having to have two different installations, one for my tool and one for the 2007 MS Access Database Engine... Can you tell me if there is at least a way of manually including the appropriate Database Engine Files in my application installation?
View 6 Replies
May 24, 2009
I just made an application using MySQL for the database. I use WAMP.Can I combine WAMP and my application installation into one packet installation ?
View 2 Replies
Nov 21, 2011
I am attempting to consume my Zenfolio RSS feed so that i can display the images in the feed. How can i access the url value of the media:thumbnail and media:content elements in my RSS feed? I have googled high and low and not found an answer regarding how to access the url value. There was a similiar unanswered SO post.
Examples of the elements:
<media:thumbnail url="http://riderdesign.net/img/s11/v35/p449020235-2.jpg"
width="400"
[code]....
View 1 Replies
May 9, 2010
im working on a little app for my self, to make my life a little more convenient. I have some media keys on my laptop, and I would like to use them with itunes while it is minimized. I found a app that did it for me a long time ago, but cant seem to find it now. But I would like to try my hand at my own, and I've managed to do so, but, my app has to be in focus for it to work. is there any way to still detect when these media keys are pressed while my app is out of focus?
View 9 Replies
Aug 17, 2009
have some sample code for customization of AutoCAD using VB.NET for drawing some complicated steel structure?
View 2 Replies
Sep 22, 2009
Im a newb so if I word this a little funny im sorry. I am using VB.net 2005 developer edition and Im trying to import a layout of a conveyor belt system onto a screen. We will be using the screen to show status on motor overloads and devices attached to the conveyor. For example here is a jpeg of one of the screens I would like to make:
We will have to change the color of the symbols when the are active or non active. Also, we want to have the ability to scroll over the symbols and have a message box pop up and tell the status. I am just trying to figure out the most logical way of doing this. I can change the file format of the drawing to Jpeg or bitmap or even PDF.
View 7 Replies
Apr 25, 2010
I am messing around with the WMPLib component provided by Windows Media Player 12 (wmp.dll) in VB.NET with .NET Framework 3.5 SP1.
I am trying to retrieve a media item from my media library based on its name (assuming there are no duplicate names). At the moment, I'm grabbing the entire media library, and looping through every media item, and quitting the loop when I've found the correct media item. This works well (except for when a media item with that name cannot be found), but I was hoping there was a more efficient way of doing this.
Here is my code so far:
Public Class WMPTest
Private myWMP As WMPLib.IWMPCore
Private myMediaCollection As WMPLib.IWMPMediaCollection
[Code]......
So what I really want is a way to optimize findTrack() to do its thing without looping through the entire media library (which could be huge).
View 1 Replies
Oct 27, 2009
I have created a media player (vb.net 2005) using the media player control. Plays fine when using open dialog box and url. I have set my player as the default player but when I click on a media file, the player will open but not play. I am sure it has to do with on open event and coding the url to see the selected file just like any other media player out there.
View 14 Replies
Jul 1, 2011
problem statement is to open the image file on form & edit the image in same form & to set the properites of the object in that image when clcik on the image & then provide the edited image to controller which will run a robo on it Input image is autocad factory map
I also wanted to know how can i get the object of autocad files as they have table block structure inside their file format i wnat to store these image so what should i use??
View 4 Replies
Sep 13, 2010
I've been going in circles trying to read autocad's dxf files. I've downloaded the dwf tool kit, however nothing seems to work.
View 1 Replies
May 28, 2012
I am using AutoCAD 2012 and the .NET API. Can someone help me how can i loop through the document objects of all the open documents? i am trying to do something like the code below..I have this question on Autodesk Forum too.[code]...
View 2 Replies
Aug 30, 2010
I'm currently developing an AutoCAD 2008 Addin in Visual Basic (.Net 3.0, VisualStudio 2010).I'm able to define my own command and I want the user to be able to cancel my command by hitting the ESC key.In AutoCAD 2010 or higher there exists the
HostApplicationServices.Current.UserBreak
method. But not in ACAD 2008. how the user may be able to cancel my command?
View 1 Replies
Feb 27, 2012
I am trying to load files into a Datagridview:
If FolderBrowserDialog1.ShowDialog() = Windows.Forms.DialogResult.OK Then
Dim myFileDir As New System.IO.DirectoryInfo(FolderBrowserDialog1.SelectedPath)
For Each myFiles As System.IO.FileInfo In myFileDir.GetFiles("*.*")
DataGridView1.Rows.Add(myFiles.Name)
Next
I am able to get the files.I have 2 columns "filename" & "readonly"
a) how can I filter just .dwg
b) how can I get readonly a tag that says "yes" into datagridview, so I can see which files are set to readonly.
c) I will be launching the list of files through autocad (I know the process.start method to launch, is there any way I can launch then via desktop shortcut, the reason I ask is there is a script file attached to the shortcut, which amends the drawing when autocad is launched:
"C:Program FilesAutodeskAutoCAD 2012 - Englishacad.exe" /b "A:SCRIPTSmyscript.scr"
View 3 Replies
Jul 1, 2011
I am trying to open a dwg file in vb.net forms without opening a autocad application But tere occur a problem : The specified module could not be found. (Exception from HRESULT: 0x8007007E).Also i want to edit the image in dwg file i.e most probably a factory layout & store information about object used in layout to figure out the best possible way to reach from source to destination.This factory layout map is input for a robot which will move according the path avaiable.
View 1 Replies
May 17, 2011
I have made a userform in AutoCAD, I made some buttons where I want to start software from.The programm I want to run is started by an VBScript from the manufacturer.When I double click the VBScript the program starts, but trying to execute if from a button_click on my AutoCAD userform it returns that I am missing MSVCR70.dll files.The missing file is in the folder of the program I want to run, aswel in my System32 folder.I tried to execute it the next ways:
Process.Start("C:WINDOWSsystem32cscript.exe", """C:Program Files (x86)ProgramRun.vbs") and
Process.Start("C:Program Files (x86)ProgramRun.vbs") What is going wrong ?
View 3 Replies
Feb 20, 2012
I have a VB.NET project in which it would be extremely helpful to the users if they would be able to print multiple .DWG files at the same time without manually opening each one and clicking on the print button.
Is this possible to do in VB.NET using the Autocad API's?
View 1 Replies
Jul 7, 2010
I am trying to create an autocad drawing in visual studio with the code :
Dim strTemplatePath As String = "C:\acad.dwt"
Dim acDocMgr As DocumentCollection = Application.DocumentManager
Dim acDoc As Document = acDocMgr.Add(strTemplatePath)
acDocMgr.MdiActiveDocument = acDoc
However, when I try to run the program I get an filenotfoundexception and the program asks me to verify if the file exists in the specified location. The file does exist in the specified location.
View 1 Replies
Jun 19, 2012
I'm trying to write a program. This should be a simple task for most of you, but I have taken one class of programming back in High School so I'm kinda lost.
The program needs to do the following:
-Open AutoCAD File
-File=>Export=>PDF=>Save
-Close AutoCAD
If possible to select a whole folder full of these AutoCAD drawings and have the program run a loop until all the files in the folder have been exported into a pdf file.
View 19 Replies
Jan 15, 2012
How I can change Autocad information inside block Attributes(I think on width, rotate, text style, layer, height..etc ) in visual basic? For example, We have some block with 2 attributes and I want replace width factor.
View 2 Replies
Dec 21, 2010
Cannot start a process because a filename has not been provided.
Private Sub Backup_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdBackup.Click
Process.Start(adbFind.adbLocation.Text, "pull /data/local/bootanimation.zip C:Backup.zip")
End Sub
It was working fine now this is just started to appear, i have went back as far as i can where i only have that line of code and it still appears.
View 1 Replies
Jul 14, 2008
When I ran the application, I am getting error as Cannot start process because a file name has not been provided. [code]
View 3 Replies
Jun 11, 2012
i want to write a code that user can drag and drop an icon to layout which this layout become consist of coordinate (x,y) and when icon was dropped to layout by right click appear a menu.
View 4 Replies
Mar 14, 2011
I am working on a project called "My Digital Diary" and I need to create some effects for the pictures provided by the user.
View 3 Replies
Feb 14, 2012
I am getting following exception while coping the row in same datagrid view control System.InvalidOperationException was unhandled
[Code]...
View 1 Replies
Jun 23, 2009
I really need to know the list the types of components that are provided by the VB .Net?
View 3 Replies
Jul 31, 2010
We are using an application provided by a third party. We applied their hotfix and are now receiving the error below. So far they haven't been able to provide us with a solution/answer as to why this is happening and how to fix it. They say we are the first customers with this problem.
Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: BC30560: 'FileSystemObject' is ambiguous in the namespace 'Scripting'.
Source Error:
CODE:
View 1 Replies
Mar 11, 2010
i have seen google chrome, whenever you open a new tab, it will show you the last 8 pages that you have visited. I want to do a similar thing, except i have a vb.net code behind the .aspx file, which shall give me a list of URL's called form the database. When the page is loaded the URL's are displayed on it. what i need my code to do is to pick up these URL's, on the background open a web browser, take a snapshot of it and save it, and display it on the screen. dont recommend IFrames cause I need a snapshot and not an actual running site in the small snapshot.
View 2 Replies
Jul 31, 2010
We are using an application provided by a third party. We applied their hotfix and are now receiving the error below. So far they haven't been able to provide us with a solution/answer as to why this is happening and how to fix it. They say we are the first customers with this problem.
I thought maybe the .net forum here will be able to guide me on how to solve the scripting error.
[code]...
View 2 Replies
Jun 10, 2011
I have the following code to export a gridview to excel and the export works just fine. The issue is that no mater what I do it names the file the name of the webform .xls instead of the name I am providing in the code (Team.xls).
Protected Sub btnExcel_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnExcell.Click
Dim sw As New StringWriter()
Dim hw As New System.Web.UI.HtmlTextWriter(sw)
Dim frm As HtmlForm = New HtmlForm()
[code]....
View 1 Replies