Circuit Negma

C++, C, VB.NET, PCB, Electronics, Circuit Design

Archive for May 25th, 2006

How to USE SAVE DIALOG BOX and OPEN DIALOG BOX:

Posted by Circuit Negma on May 25, 2006

Download Tutorial- PDF File:http://rapidshare.de/files/21379540/SaveFileDialog.pdf.html

Step-By-Step Instructions:

1. From ToolBox ——> Select “Dialogs” Category ——> Click on “SaveFileDialog”

2. In the Properties Window ———> Change the “SaveFileDialog1” to “SaveFileDialog” under (Name)

3. Read the Following Function:

Private Sub SaveFileName(ByVal extStr As String, ByVal ExtNameStr As String)

Dim filename As String

On Error GoTo SaveAsErr

' display the Save dialog

SaveFileDialog.AddExtension = True ‘ This is one of Dialog Properties

SaveFileDialog.DefaultExt = extStr ‘ This is one of Dialog Properties: Ex: { jpg or pdf or doc}

SaveFileDialog.Filter = ExtNameStr + " (*." + extStr + ")|*." + extStr ‘ This is one of Dialog Properties

' Check if yes or Cancel btn is clicked

' get the resulting filename

If SaveFileDialog.ShowDialog = Windows.Forms.DialogResult.Cancel Then

If extStr = "doc" Thenhttp://img101.imagevenue.com/aAfkjfp01fo1i-13575/loc184/86776_SaveFileDialog.jpg

filename = "opt-out." + extStr

ElseIf extStr = "txt" Then

filename = "opt-out." + extStr

End If

Else

filename = SaveFileDialog.FileName

End If

SaveAsErr:

Exit Sub

End Sub

Posted in VB.NET | 16 Comments »

UpDate: Opt-Out Letter Generator – Ver. 2.0.0.6

Posted by Circuit Negma on May 25, 2006

TESTING:

1. Test the software on other machines with Installed Office Products DONE

2. Test the software on other machines with no Installed Office Products NOT DONE

 

 

Added Features:

1. Notification Menu Strip beside the Clock       DONE

2. BackGround Image                                        DONE

 

 

Software Bugs:

1. Control the font format within cells                DONE

2. Check user input syntax and characteristics DONE

3. Check if the file exists                                    DONE

4. Check if the file is already opened                 NOT DONE

http://cdn-30.cdn.buzznet.com/assets/users11/subspace/default/msg-114858225565-2.jpg

Download-Link: http://rapidshare.de/files/21371773/Opt-Out_2_0_0_6.zip.html

Posted in VB.NET | Leave a Comment »

UpDate: Opt-Out Letter Generator – Ver. 2.0.0.5

Posted by Circuit Negma on May 25, 2006

Software Bugs:
1. Control the font format within cells                    DONE
2. Check user input syntax and characteristics     DONE
3. Check if the file exists                                        DONE 
4. check if the file is already opened                     NOT DONE
 
http://cdn-99.cdn.buzznet.com/assets/users11/subspace/default/msg-114848806472-2.jpg
http://cdn-27.cdn.buzznet.com/assets/users11/subspace/default/msg-114848806186-2.jpg
 

Posted in VB.NET | Leave a Comment »