GPS Tool Box For VS 2010 .Net?
Sep 13, 2011
Not sure if this is the right place for this discussion. I am in the process of building some tools in Visual Studio 2010 Premium in Visual Basic Windows form application. There's not much out there for this. I figured this would be a great discussion and journey for many people.
Is this the right place to post this?Dr.Bones- " If my application is too hard for a 5th grader to run, I've made too complicated"
View 16 Replies
ADVERTISEMENT
Jan 5, 2010
I want to make a Tool Bar in my task bar such as windows media player tool bar.
I'm using VS2005.net Windows xp Professional Edition.
View 5 Replies
Oct 17, 2010
how to put the tool tip text in status bar label this in form load event
View 14 Replies
Feb 21, 2012
I recently added a class I created with a tool to my Visual Studio 2010 project but I can't call it in my codebehind file. I was told I need to check the namespace. How do I check and control a classes's namespace?
View 1 Replies
Oct 13, 2010
I am having a hard time dealing with this project. I wish to make a program that will be able to restrict programs to run. For example:Since we all know that the gpedit.msc has this ability. Which will add a new subkey under HKCUSoftwareMicrosoftWindowsCurrentversionPoliciesexplorer with a new subkey DisallowRun, and a DWORD value at the Explorer key will be added DisallowRun.If I click the Button1, the text in the Textbox1 will add a String Value to the key above.
View 4 Replies
Nov 22, 2011
i need to draw the table outline/border,columns, rows over on a image. Like in Rectangular box in ms paint.
View 3 Replies
Nov 15, 2011
i am creating a temperature conversion tool with vb 2010. i am trying to use radio buttons to choose the type of temperature that i am converting to and from.
Option Strict On
Public Class project
Private Sub txbInital_TextChanged(sender As System.Object, e As System.EventArgs) Handles txbInital.TextChanged
[Code].....
View 4 Replies
Feb 23, 2010
I reported a bug with VS 2010 here: [URL]
They said they could not reproduce the error and wanted me to download the "Visual Studio 2010 Diagnostic Tool ". They just say download the tool and provide them with a trace file which i'm assuming the mean an ETW file. They give me no information on how to accomplish creating a file. I'm using you have to accomplish this with xperf but even if i'm right it has many options that i have no idea what they mean.
I have no idea how to run this thing and i shouldn't have to scour MSDN documentation for the tool trying to figure out what they want.. I did provide them with additional information on how to get the crash to open "have VS 2008 open" but unless i get instructions on what they want then unfortunately i'm not going to be able to help them.
View 2 Replies
Sep 30, 2010
I did this before but can't seem to remember how. How do I include a .COM tool into my IDE (like Common Dialog)?
View 2 Replies
Jun 11, 2011
I am making a gradient colored text tool for a game I play where they use a 3 digit number as an RGB color code before text. Making gradients by hand is tedious, as to do a gradient you type one letter at a time with an RGB code that changes by 1 in front of each letter.
example: "^090H^190e^290l^390l^490o" Would be a color gradient for Hello
I have a user input text into a text box and choose up to 6 colors. The colors then are assigned RGB values, only instead of 0-255 they are 0-9. (So they look like this 000=black 999=white 090=green, etc.)
I have figured out how to do this, but now I need to place the RGB values in front of the users text while only changing one of the RGB numbers at a time.
So if the color values are 090 and 900:
"090 190 290 390 490 590 690 790 890 990 980 970 960 950 940 930 920 910 900" is what I would like generated with the users text spaced evenly between.
I have no idea as to how I would go about putting three digit color codes between the users text or how to change the color codes one number at a time. I could try to do this on my own but it would be sloppy and probably a lot more code than needed (I have a feeling I should be using a loop or something like 'for each')... It's been awhile since I opened VB!
View 1 Replies
May 30, 2012
This is a very basic question, I have a parent form and a child form and both window state are set to maximize, would it be possible to remove the toolbar at the top? I have tried most thing like setting the form border style to none on the child form but still I get two tool bars. I would like to remove the tool bar in the black square
View 5 Replies
Sep 13, 2011
I am in the process of building some tools in Visual Studio 2010 Premium in Visual Basic Windows form application. There's not much out there for this. I figured this would be a great discussion and journey for many people. Is this the right place to post this?
View 2 Replies
Aug 11, 2011
I hope I got all that in this question title. Let me explain. We are starting on small desktop app that will snowball into a big app with many forms. The database is SQL Server. It will have classic stored procs/functions performing classic CRUD functions. Given a table or stored proc in SQL Server what is the quickest way to create a form with all the hooks to maintain a table.
For e.g. lets assume I have table like this (most code below is pseudo code)
Table Employee
{
Name varchar(30)
DOB Datetime
Address varchar(100)
}
From this as source I want to create my Target which is form with 3 labels and 3 textboxes with add delete modify buttons (or OK button to add if not exists or modify if exists)
[Code]..
The code generation tool or technique that will be used should generate the correct db hooks (create SQL parameters, SqlCommand, execute sql.. basic try catch etc. Is there any open source tool to do this ? Some trick or templated approach via VS 2010 ? Worst case any third party tool ?
View 3 Replies
Jul 23, 2011
Ok; I give. I've been searching through the menus and maybe I'm just missing it but...where did they hide the old tab order tool in VB.Net 2010? I checked the View and Format menus; not there. I suppose I can change each one by hand, but my forms have reached a size where that's getting to be a bit of a pain....
View 3 Replies
Jul 29, 2010
I'm looking Looking for an OCR (convert image to text) tool compatible to VS2005 (not necceraly for free).
View 3 Replies
Jul 10, 2009
use of tool tip?
when i drag and drop it in the form,it appears beneath the form
what is its use?
give me some codings so that i can understand its use
View 7 Replies
Mar 8, 2010
i've searched high and low and cannot seem to find how to implement an application tool bar in VB.Net. I want to basically create a scrolling text banner, which docks itself on the top of the screen on which scrolls along a message. Pretty simple in VB6 but can find a VB.net alternative.
View 3 Replies
Aug 21, 2011
i read this guide [URL] and I added it successfully to my IE browser... Now I have one problem - creating a DLL for it (extension) where i need to start?
View 3 Replies
Jan 1, 2012
Is there a way to clear out a tool tip?
I have a field where the tool tip data is changed based on what record they select. It's show each record in different tool tips. I just want to show the current one.
Below is my
Dim lblnotes As ToolTip : lblnotes = New ToolTip
lblnotes.SetToolTip(lblequipment, return_notes_stringtooltip())
View 2 Replies
Sep 30, 2009
What tool can I use to convert C# 3 to VB.Net 9 .Net 3.5?
View 5 Replies
Apr 25, 2010
i trying to display an rss feed but i dont think im using the right object as the webbrowser object does not work. ive tried several other objects but to no avail. is there a specific tool i should use or is it my code?
View 2 Replies
Oct 13, 2008
i have created a tool written in C# that would parse string (from 3 files) using regular expressions then throw all the matches in a grid. It works fine on my machine.. It returns matches from those 3 input files.. The problem is when i use that tool (.exe) in other machines..there are no errors. The program works fine for the first 2 files.. but doesn't return matches on the 3rd file.I tried copying the codes in one of the machines just to trace the problem, but when i run the program, it suddenly worked fine.. from then, the program is working fine on that machine.
[Code]...
View 2 Replies
Oct 22, 2009
How to use listview tool i need some example of its
I need Some example
View 8 Replies
Jul 15, 2009
I want to programm login for specila web forms using asp.net. I have already user- database with user name and passwaord in sql server.How do i write login program using login tool.
View 1 Replies
Nov 18, 2010
I use Calendar tool in MS Access on a form - How/Where can I get calendar tool for VB.
View 2 Replies
Apr 2, 2012
I am working on a project that currently uses a .tiff, compares the defined template document to the document in question. We are moving away from the .tiff format for a variety of reasons but mainly because the new files will be coming in the format of PDF. I see two potential solutions to the issue. First convert the PDF to a tiff and use the existing code. Or second, use a PDF library that will compare the template PDF to the PDF that is received. Because the PDF that is received will basically come from an outside source we won't know for sure if it is text based or image based so the library or tool will have to be able to compare both.
View 2 Replies
Sep 7, 2011
I delete Settings1.designer.vb from Visual Basic and now Visual Basic gave me this problem:What should I do ? :|Warning1A custom tool 'SettingsSingleFileGenerator' is associated with file 'My ProjectSettings.settings', but the output of the custom tool was not found in the project. You may try re-running the custom tool by right-clicking on the file in the Solution Explorer and choosing Run Custom Tool
View 1 Replies
Feb 15, 2010
A scribble tool in VB paint app?
View 3 Replies
Jan 21, 2011
Is it possible to add tool tip to an image in vb.net
I am showing image to a treeview node.Node has its own tool tip which is shown on text mouse over of node
each node also has a image to which I want to show a different tooltip like image name
View 3 Replies
Jul 12, 2010
How can I add a little Toolbox Window to my app. I've tried using a normal Form, as soon as it appears I have access to its buttons, but the Main Form is then unresponsive until I close the Toolbox.change this behavior so I can have access to both the buttons on the Toolbox as well as the Main Form controls.[URL]
View 4 Replies