i need to make a program that when opened shows every thing on your dekstop icons names every thing and i need to make so that when a user clicks on one of those items like a program or file it will open them and if i right click i want to be able to delte it copy,send it,open with, just like microsoft. I know shell [URL] will do this but i would like to make my own
I have a basic Windows form with one Crystal Reports form veiwer control on it. When ran on the development machine it displays the report fine.After build and publish the application is now installed on a user PC. I am getting an error that the Crystal Decisions. Windows. Form version 12.0.2000.0 can not be found. All the Crystal dll's are in the install directory but none of them are being installed in the install machines GAC.Am I setting my publish output up wrong, may references wrong, or is the local GAC files the problem. The message is so criptic, it doesnt really point me in the right direction.
i have two forms one is a text editer and the secone one is a big form and i want to save a file form the text editor to the secone form just like on a desktop would.
Basically I want to make a dock bar that is on the desktop, I want to be able to drag files into it and when the files are dragged in there icon appears and when you click the icon it opens the file
is there anyway to make my form1 always on top of the desktop?like when i open it i ca always see it and another program will just go under it instead of over it
I have developed a desktop application that connects to a MS SQL server over a network. One of my clients wants a third party company to be able to use my desktop application but connect to the MS SQL database in my client�s office. Obviously my client could open the ports to the SQL server to make this accessible from the web, but this is a huge security issue and obviously not one I want to even recommend. Is there a way that I can make my desktop application securely communicate over the web to the SQL database?
can some one so me an example of how i can make a form to a desktop that will let me save files to the form and duble click the file and it open a program to view that file in,
Lately, ive been using winsock quite a lot. I made a chat application, and now i want to make a remote desktop program. I dont want a half asses one, where u can press buttons that send info to the server, but i want to have a client server relationship where you see the screen, have control to the keyboard, and the mouse. Any tips on how i can go about this?
Ive been experimenting with physics of objects in visual basic and what (a boucing ball) and Ive been wanting to take it the step further, make the ball bounce around the desktop. but how.
Im looking to make a desktop app that will be similar to the doodle function in yahoo messenger but with a loaded background image to draw on. I was thinking of using a P2P/IP chat on the side.Im just starting with vb most of my coding has come from actionscript
We have a Windows Forms VB.NET application running on Windows Server 2008. Users access this app using Remote desktop.The app displays information in Excel, but Excel opens on the server.Is there a way for the .NET app to launch Excel on the users local desktop?
Some of u already know I'm making a 'virtual desktop'- thing.Only one problem. When switching to a new desktop it starts a new instance of my app in that desktop (works) and on the form load event it says process.start("explorer.exe") <- here is the problem. It only shows a window not the actually bar.Also this may be important it shows the window, but when I navigate to explorer.exe 'C:Windowsexplorer.exe' and open it there. The explorer bar does show up.
I need to be able to click a link from a vb6 program and call a number via a connected mobile phone.(Assumption: the mobile phone is already connected to the PC via bluetooth on com3)
I want to do a small application that made the broadcast of images from a PC. The idea is to make an application of remote management but without the management part, only with the viewing of images. Anyone know any code already done or any API that helps in the project?
how to make a multi language desktop application in vb.net 2005. only a small desktop application in which i can change language according to countries.
I'm working on one of my applications and I'm trying to find a way to use the "Go To Desktop" function that goes directly to the desktop without minimizing any window (This can be achieved by clicking on the Win + D buttons or on the desktop icon in the quick launch toolbar), but how can I activate it using vb? I thought about sending keys but I guess there is more offical ways to do it.
Environment.GetFolderPath(Environment.SpecialFolder.Desktop)The main reason is we area talking about an Environment that has XP, Win Server 2003 (TS), Win Server 2008 and Win 7. Obviously different path depending on the OS. I need to copy a file to a users desktop and would like to do so without having to hardcode the path as it could change depending on where they are working from.
im making a program which is a sort of mock OS, and im wondering if it is possible that, when i click a certain button, a picture box appears in the space which is the desktop. The picture box must act as a shortcut, for example if i click on new text file, a picture box with a text file picture appears on the desktop space, same for folders
[Code]....
you check the tutorials that you post! I am using Visual Basic 2008 Express, not any earlier additions! One of the tutorials was about how to make labels that tell you their screen location!
I want to move a file from the users desktop to the running applications folder.This is what i have which works for me - but the desktop path will be different for each user so am looking for the system path
Dim FileToMove As String Dim MoveLocation As String FileToMove = "c:usersmedesktop est.txt"
how to POST to a php file form a vb.net app: http:[url].... So now I've logged in the user user by posting their username and password to the php file, the php file then does security/checks they exist/etc and if both username and password are correct is stores the user ID in a session variable.Now if the vb.net app tries to download data off a page which needs the user to logged in, it checks this by doing:
if (!isset($_SESSION['uid'])) { header("Location: index.php"); }
However after having logged correctly in the app the session variable is not set.How does session work with a vb.net app like this?When the user logs in successfully should I download the user id and keep it in the vb.net app and then post it to each page that requires authentication?
I'm making "Sticky Notes" and I want to be able to pin those stickies to the desktop. Sorta like a BottomMost function. Is there something like that I can use and if not, how would I even go about making a function that would keep my form on the desktop?
'Pins the program to the desktop If saved = False Then saved = True : PinToDesktopToolStripMenuItem.Checked = True : lblClose.Visible = False : Me.ShowInTaskbar = False Else saved = False : PinToDesktopToolStripMenuItem.Checked = False : lblClose.Visible = True : Me.ShowInTaskbar = True End If
The reason I'm not going to mark it resolved is because if I click pin to desktop and the desktop isn't the application directly under my application then I have to minimize every program to get it to stay on the desktop.