Make A Key Generating Program ?
Nov 18, 2009
How to make a Key Generating program for my program. User give some string my program generate a key and user fill it. then the program run. now i see some tutorials on encrypting but the strings are too big (i was thinking that the string i give will encrypt 1 more time but this will make it even bigger.
View 4 Replies
ADVERTISEMENT
Apr 12, 2011
how to make a program generating exe file?I want to do something where i can click to a button and exe file will be generated napr.in C:
View 29 Replies
Mar 18, 2010
I wanted to know how to make a loop of generating codes, that I create (from the push of button1) Like this:
Dim MsgBox As String
MsgBox = ("My code here, not a random one")
TextBox1.Text = MsgBox
[code].....
View 3 Replies
Sep 10, 2009
I am currently working on a project for a client to organize company forms easier
Here is what I need the program to do:
1.Have an input box where the name of an image can be posted. (This image will be copied over to the website, but not from this program, a standard FTP client will be used for that)
2. When the 'Generate' button is clicked, a .html page will be generated which is completely empty (Except for tags and such, which is required) and code to embed the name of the image (from step 1)
So this way the 2 files (HTML and Image) can be uploaded to the server, and made live relatively quickly. There is a flash application that auto-updates that displays the avaliable forms that has been made, but it is a pain to do it, and plus, it wastes time from the IT guy's jobs where as with this program, the receptionist could do it, as she handles the forms.
View 5 Replies
May 10, 2009
I wanted to know how to make a loop of generating codes, that I create (from the push of button1) Like this:
Dim MsgBox As String
MsgBox = ("My code here, not a random one")
TextBox1.Text = MsgBox
I want the textbox's code to change into another code, that i want, from the push of button1?
View 23 Replies
Dec 24, 2011
So I made a program for generating prime numbers in a list box. My initial code had them listed like this:
2
3
5
7
..ect
Now I have them listed in pairs like this :
[Code]...
View 1 Replies
Jun 6, 2009
I cannot find a way to make a program that I write make a shortcut in the start menu for all users.My final goal is to make an MSI and deploy it in group policy to all users on a computers OU. Is this possible?
View 5 Replies
Aug 23, 2009
How do i make my button open a program and make it windows size?
View 6 Replies
Feb 25, 2010
If e.CommandLine.Count > 0 Then
Dim IncomingCommand As String = e.CommandLine.Item(0).ToString
If IncomingCommand.Substring(0, 2) = "-1" Then
form1.close()
End If
End If
I am trying to make the program close if the -1 string is sent with the program. See my installer allows for me to run certain programs before it actually installs, but it doesn't shut down copies of the program itself. So I have a next startup instance set to shut the program down if the -1 is received. But if the program is not running it starts up instead. This is not desired. form1.close doesn't work. e.cancel = true doesn't work, etc etc. What can I do to make the program not start during this instance.
View 1 Replies
Jun 1, 2010
I made vb.net program for 1440x900 resolution, if i run my program on 800x600 or 1024x768, my program's resolution is bigger then windows, so i have problem with resolution. Now i want to change my program's size and i am interested in, wich resolution is correct to make program, 800x600 such as minimum?
View 9 Replies
Aug 26, 2009
How do I make a program that opens a file in the folder the program is stored?
View 6 Replies
Apr 3, 2010
I want to make a program that searches for a RGB color and clicks on it, WITHIN the program.
View 2 Replies
Dec 30, 2010
what im trying to do= make a program that will make multiple accounts
[code]...
ok what i type in textbox(es) "1" i want it typed on a "3"{a website=www.justin.tv/signup} when i hit the "2"[button1]i really dont have any idea what im doing i know ill need to have a webrowser to load the justin.tv/signup but i have no clue what the name of the boxes are called on the webpage
View 4 Replies
Jun 9, 2011
Me and a friend are making an app which we need to play a sound when Form1 is started. How do we do this? I don't mind code.
View 2 Replies
Aug 15, 2011
How to make a computerized examination program using vb.net...
View 1 Replies
Oct 4, 2009
I am new the Visual Basic and just downloaded 2008, and I am wanting to make a program with a button that will run a .exe that is in the same location as the program/
View 2 Replies
Jun 9, 2011
Im having kind of trouble looking for this info, but i created a POS program that when i install it, it install under Local SettingsApps2.0labla
So what i want to know if how can i make my system install like any other program, "Under Program Files/POSystem/" like so
View 2 Replies
Jun 25, 2012
I am making trial version of my vb .net project but it is not counting the days , date and time . Can u plz give me any suggestions to make it correct. [code]...
View 1 Replies
Jun 10, 2009
Ok, so I'm trying to make a program in VB that will bring up another program (Like MSN Messenger, etc) and press a certain button on that interface (i.e. an "OK" button, or File on the menu at top). How would I be able to do this?
View 1 Replies
Aug 27, 2009
Is it possible to only make a program open when another program opens it? so when someone tries to open it themselfs by clicking on it, it pops up a error message?if so then how would someone go about doing this in VB 2008?
View 9 Replies
Aug 7, 2009
Is there a way to make an update for your program that the 'user' can update the app without re installing the whole program?
View 1 Replies
Feb 23, 2010
I want to generate a cd key with the format "####-####-####-####". I am generating the key using some algorithm like "PPKG6B8ZPG79U05R" but I need this as "PPKG-6B8Z-PG79-U05R". For this I am using CreateKey = String.Format("{0:" & sFormat & "}", strKey), but it gives the result as "PPKG6B8ZPG79U05R".
View 3 Replies
Apr 9, 2009
I am using the sqldataadapter for generating the output of query in the form of XML. I have following sample query
select FirstName,LastName from Users where userid='Amol'
After fetching the data using sqldataadapter, I got the result in following format
<Dataset1>
<Users>
<FirstName>Amol</FirstName>
[Code]....
View 2 Replies
Jun 20, 2011
Can you make a MS-DOS program with Mirosoft Visual Basic 2008 Express Edition? I wanted to make one that doesn't have windows that pop out of Command Prompt, DOSBOX, or whatever is being used. I tried to create a message box, but it won't be like in MS-DOS! I don't know much on VB, but I need to make things all stay on DOSBOX. Here is the template that won't stay in the CLI:
Imports System.Windows.Forms
Public Class Dialog1
Private Sub OK_Button_Click(ByVal sender As System.Object, ByVal e As
[Code].....
View 3 Replies
Sep 12, 2010
I want to make a program, I want it so I log in to the program (Usinging my Hotmail account details),
Then after I log in, it will open a web browser and direct me to [url].., signed in.
I want to do this because, I don't like opening, up Mozzila, then navigating to Hotmail, then signing in. So this is why I want to make a program to do that for me.
View 2 Replies
Jun 5, 2009
How do i make a web UI for my program? So i can control it in the webbrowser or remotley via another webbrowser?
View 3 Replies
Aug 19, 2010
Would it be possible to code a IDE in VB.net? I now i can make something like CodeDom, But Would i be able to make something like Visual Studio?
View 6 Replies
Apr 26, 2012
I want my program to be always on top, no matter what....taking precedent over any other forms/apps...anything.....
Is there a simple code I can place into my form to do this in VB 2010, that will work with just about any program type?
View 3 Replies
Feb 4, 2010
I have a rather odd thing happening with an Excel WorkSheet that I am creating through .Net.I load up an existing workbook
Dim _xlApp As New Excel.Application
Dim _xlWorkbook As Excel.WokBook = _xlApp.Workbooks.Open(_templateFileName)
set it to be visible before populating it (for debugging purposes)
_xlApp.Visible = True
I then go on to populate the existing template.
Private Sub GenerateOceanFreightGrid()
Dim columnCount As Integer = 4 ' _standardColumnCount
Dim columnInsertPosition As Integer = 5
[code]....
When i set a breakpoint on the "Private Sub Gen.." line, and step through the code line by line, it inserts a new column for each variable declared, so in this case it will insert two columns before it even hits the "If MyBooleanValue()..." line (I can watch it actually happen due to the Excel app being visible). However, if i dont set a breakpoint and just let the code run straight through this doesnt happen.There is no multi threading happening or anything else that i suspect would have any impact on the code.
View 1 Replies
Feb 13, 2010
im making a program that will generate a number ever 1000mil seconds and when it hits 0 its makes a new time and starts again
i have 1000mil seconds set on a timer and i have this code
If Labelcount.Text >= 0 Then
Labelcount.Text = Random.Next(1, waitTextBox.Text)
[code].....
View 11 Replies