Am looking at making a small application that will list printers on two file servers at two separate sites, from this app they can add the printer/s to there local computer.
I have found a small application on the web but there are a few improvements it could do with.
They are; Show all local printers without having to click on a check box. Show sites printers without having to click on a check box. Show comments about the printer�s location other then just the site.
If it is possible I would like to update this one, but if there are any other examples where I could download something similar, or even some help with how to begin to create a new application.
Here are some screen shots, of the application form and the xml which holds the folder structure for the sites.
When you go to the Start button and then "Printers and Faxes" and you see a list of the printer objects defined on that PC. In my App VB.Net app I want to be ale to use a drop down box to display this list of printers and allow the user to select one of them.So, Not necessarily a list of printers on the Intranet that the user is connected to, only on their personal PC.
Trying to write a Vbscript. Actually, I'm trying to modify an existing script that I found on the internet. I basically need the script to run on workstations, delete printers from our old print server (master), and install the corresponding printer from our new print server (dc01). I should also mention that the printer names have changes slightly. So far, the script does a great job of deleting printers from Master, but none of the corresponding dc01 printers are installed.
i have an app that pings all IP's on my network and then adds all alive hosts to a list, then my WMI query runs for all of them ips and gets some information. it all works fine except for when it gets to printers and switches/routers which obviously dont support WMI. Is there some way i can check if a device supports WMI and skip the query if it does not?
I hav two buttons & listview on the form,On First button click,i want to insert data & images into Lvw,On Second Button click,I want to just insert the data..Mine code also does that...But just there is a little probs.On button1_Click, I assogn smallimagelist to imagelist name ,on Second button click,I assign to smallimagelist to nothing....Images are not inserted...on second button click,but still the images space(Left of lvw) are left, want to remove dat,How to do that..
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ListView1.Columns.Clear() ListView1.Items.Clear() ImageList2.Images.Clear()
Is it possible to create a windows application in VB to take form input of a text box and put that to a sharepoint server as new list item?I want an exe that when ran, opens to a form with a text box or two and a submit button, that creates a new list item on a sharepoint list.I am using VS 2005 , code in VB. All my google searches come up with stuff that seems to run on the sharepoint server itself, not a program i hand out to people to run from the desktops.I've tried so many permiations of what i found through google searchs and my brain just hurts atm. I'm new to VB + VS, my background is in VBA on Excel, and i have an solution that works in vba, but causes headaches due to macro security etc.
I need to make a small programm for ticketing on a parking for a small hotel.So i have 2 Printers pariking In (for delivery of the tickets) and 2 Readers PArking Out.Both Printers and REaders are working Serial.So i need to poll the serial ports of the printers and readers every second.The data is stored on a SQL database so i need to read and write in the database.Can i do this with 1 PC and 1 programm or 1 PC and 4 programms that are runnning at the same time ?
On form 1 , i have a number of buttons that open up different websites.What i want to do is when i click a button on form 1 , i want forum 2 to show ( Form2.show() ) , Form 2 will have a list (Buttons) of internet browsers.
I am trying to learn by creating a small application to help my son learn math. It works but I know there are better ways of accomplishing what I need.
For example:
'Declare variables Dim num1 As Double = CDbl(frmMath.txtNum1.Text) Dim num2 As Double = CDbl(frmMath.txtNum2.Text) Dim answer1 As Double = CDbl(frmMath.txtAnswer.Text)
[CODE]...
I imagine I would need something like a do while loop?
I am trying to get a small bitmap from a larger image. something like
Dim bmp As New Bitmap(PictureBox2.Image)
However this just gets the entire picture not just a portion of it, I would like to do something like this where I can specify the starting and stoping points
Dim bmp As New Bitmap(PictureBox2.Image, StartX, StartY, EndX, EndY)
I would also like to take these smaller images and paste them into a single larger image. Is there any way to paste it in starting a a certain point. Such as
This code block of a larger program uses ms office xp spell checker. It works except, after running spell checker it brings up the word screen for a few seconds then it resumes vb session. Is there a way to not have this happen. It happens right after clicking CHANGE in the spell checker dialog box that comes up (ms words spell checkr).
Imports Microsoft.Office.Interop Public Class frmEditor Dim wordObj As Word.Application
I need to overlay a small bar along the top of the screen over a fullscreen DirectX game. I have searched for a while but I have not found any code examples for VB.NET 2008 (I've never used any previous version). How can I do this? Would this involve learning DirectX programming?
I have spent the last 20 plus hours trying to parse a incredibly small XML file with Xpath. I understand that it is a ready only, extremely fast way to pull values out of an xml file. Here is the string I am working with. I have a 3rd party function that returns results, based on these xml results i would like to retrieve certain vaules.
is there a way through vb visual express 08 to ask a printer if it has toner or paper? im not to sure on how to communicate with printers in this way if it is at all possible.i am writing a program to display the status of the printer and this is key.
I have this gamepad: [URL]I want to write a small application that is able to read what button is pressed on the gamepad.I've seen this thread:[URL]but this does not read the input of the controller, it only initialize it.[URL]
I have been attempting to do this in so many ways. I have tried using rundll32 printui.dll, PrintUIEntry and for some reason it stops working on vista. I have no clue why. It wont even try to work with HP printers using the inf file. What is the best way to add a LPR port printer programmatically? I can create the LPR port with NO issue what so ever.
I have multiple forms and reports with different print area. Some are designed to print to a thermal label printer and others to department shared printers. Currently the user is able to change the printer in print dialog box and print to differernt printers. I want to be able to create a form where the user can assign different printers for different jobs and not have to worry about it.
The problem is, i have never worked with printing function and my collegues arent too smart so I was wondering if someone can throw me ideas on where to start so i can start googling for it.