2,383 Posted Topics
Re: Hi dprescott01...Welcome to Daniweb friend. you can introduce your self in [B][URL="http://www.daniweb.com/forums/forum165.html"]Community Introduction[/URL][/B]. | |
This is code for Encrypt and Decrypt. this a simple logic of encryption. Please leave comment or feedback if this code helps you. Thanks. Jery. :) the encrypt function place in a module. This Code needed : 1 Module 1 combo box (For input before encryption) text1 in this program … | |
Re: - Maybe missing path of database - you didn't include db file. Just tell what kind of error when you running program on other machine. | |
Re: your data type of column not have a compatibility with your input in textbox. | |
Re: [code]Private Sub Command1_Click() Shell "C:\Windows\notepad.exe", vbMaximizedFocus End Sub [/code] | |
Just post simple code. Give a feedback if it helps u :) | |
| |
Re: Don't post double threads. I already answered your question in your other thread. | |
Re: Name : Jery NickName : Jx_Man Age : 22 Hobbies : Soccer,Basketball,Swimming, Loved Sport Much. Location : Jogjakarta Occupation : Last year University Student i m still post around Geek Lounge, vb, vb.net, C# (sometimes) section. Thanks... | |
| |
Re: maybe you clear textbox before added id into listbox. | |
Re: i have this problem before but i never tried to use another installer before, i just use the deployment package that it included in vs.net. i did like this : 1. Open your project 2. Click File - New - Project - Setup and Deployment Projects you will see the … | |
Re: use [B]Microsoft Multimedia Control[/B]. find this control on component. add this code to play mp3 file : [code]On Error GoTo ErrMsg AxMMControl1.Wait = True AxMMControl1.FileName = OpenFileDialog1.FileName AxMMControl1.Command = "Open" AxMMControl1.Command = "Play" Exit Sub ErrMsg: MsgBox(Err.Description) End Sub[/code] | |
Re: [URL="http://www.tech-archive.net/Archive/Development/microsoft.public.win32.programmer.directx.audio/2005-11/msg00045.html"]See[/URL] | |
hi all, i m a newer in c#. a already start to using c# today. in my first project i make program to add,edit and delete data from database. i m already do all of them. now i want to showing data in every control (textbox,combobox, etc) when i click … | |
Re: [QUOTE]I want to be able to insert data into text boxes and when i press the button store to be able to store the data into the database. [/QUOTE] hi george, so, what the effort from your code? i think there is nothing wrong with your code.. if u want … | |
Re: Make your program to access temporary internet file folder and list all file there "documents and settings\%username%\local settings\temporary internet files\ " And check this registry keys from "HKCU\Software\Microsoft\Internet Explorer\TypedURLs" | |
Re: what installer?>.Net Deployment and package? | |
Re: actually dataset its important think when you create crystal report. dataset will use to load the table as you want, one or more table. if u use data adapter to generate dataset, you can configure what table which you want to show in query builder. check every table that you … | |
Re: [QUOTE]I just wanted to ask you guys how should I proceed with this thing..[/QUOTE] more clearly... u mean the business process?? | |
Re: when you create a setup, u can make shortcut and place it on desktop folder. | |
Re: hmmm.... do like shouvik suggest if u want your program automatically when windows start. | |
Re: [code=vb]"Select Count (*) from FILENAME where fieldname = '" & Trim(textbox.text) & "' "[/code] | |
Re: there are better to not allowed user to input alphabetic character. So, when user press keyboard keys, u can handled it by code to not allowed them to input alphabetical character. this following code will not allowed you to input except number : [code=vb.net]Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal … | |
Re: see this palindrome program : [ATTACH]5297[/ATTACH] don't forget to give feedback. | |
Re: I think a better way is convert as byte.. Some trouble can happen if you missing the path of image or moving some pics. | |
Re: just checked id entered with id on database. If same then display error message, if not same then add into database. | |
Re: Actually this section for VB4/5/6 Post your question on [URL="http://www.daniweb.com/forums/forum58.html"]VB.Net Section[/URL] then closed this thread. | |
Re: try this following code : ' This code for string input or other (comma,drop,question mark etc) except numeric [CODE]Private Sub Text1_KeyPress(KeyAscii As Integer) If KeyAscii < 48 Or KeyAscii > 57 Then Text1.Locked = False Else Text1.Locked = True End If End Sub[/CODE] ' This code for numeric input only, … | |
Re: [URL="http://www.csharpcorner.com/UploadFile/mgold/NotePadDotNet09042005163058PM/NotePadDotNet.aspx?ArticleID=ae1448cc-f5da-4dcd-b33c-776a9053788c&PagePath="]visit this site[/URL] | |
Re: Hi there...Welcome to Daniweb friend. Hope u find what u needed here | |
Re: on timer tick event - make randomize function to get new X and Y,so your button always get new location to moving every timer tick. | |
Re: [code]Process.Start("explorer.exe", "/n, ::{645FF040-5081-101B-9F08-00AA002F954E}")[/code] | |
Re: use manifest file. | |
Re: Use Join statement [URL="http://www.sql-tutorial.net/SQL-JOIN.asp"]http://www.sql-tutorial.net/SQL-JOIN.asp[/URL] | |
Re: This following code just allowed you to entered numbers only (No alphabetics or any special characters) : [code=vb.net] Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress If (Microsoft.VisualBasic.Asc(e.KeyChar) < 48) _ Or (Microsoft.VisualBasic.Asc(e.KeyChar) > 57) Then e.Handled = True End If If (Microsoft.VisualBasic.Asc(e.KeyChar) = 8) Then … | |
Re: what event do you want?button event?click event?or what? | |
Re: looks like this project created in vb6, right? [B]If in vb 6 :[/B] go to File-> Make ProjectName.exe It will appear in project folder. [B]If in vb.net,[/B] exe file already created by compiler when u first debug project. To get .exe FileGo to Project Folder/Bin/, you can found exe file … | |
Re: [code] Dim Phrase As String = "this is a test" Dim TextArray As String() = Nothing Dim Word As String Dim NewString As String TextArray = Phrase.Split(" ") For Each Word In TextArray NewString = NewString & (Word.Substring(0, 1).ToUpper() & Word.Substring(1, Word.Length - 1).ToLower() & " ") Next Word [/code] … | |
Re: Set [B]DropDownStyle = DropDownList[/B] on combo box properties. |
The End.