Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~12.3K People Reached
About Me

I want To learn more. :)

Favorite Forums
Member Avatar for Begginnerdev

Hello Daniweb, and thank you for taking the time to read this post. I have a question of efficiency. I am wondering, what is the most efficient way to print from a listview. The listview's values are loaded from a database, and I would like to print from that listview. …

Member Avatar for Ivan_14
0
6K
Member Avatar for paoi00

hello! i have one button . i want when i click it it will print preview a microsoft document from my desktop. is it possible? how to do it? thank you~

Member Avatar for paoi00
0
160
Member Avatar for paoi00

i had a problem with this codes.. this codes will retrieve image from database that will based on the employeenumber. Dim CN As New OleDbConnection(cnString) CN.Open() daImage = New OleDbDataAdapter() daImage.SelectCommand = New OleDbCommand("SELECT * FROM EmployeeProfile ", CN) dsImage = New DataSet("dsImage") Dim dataTable As DataTable = dsImage.Tables(0) If …

Member Avatar for Pgmer
0
1K
Member Avatar for paoi00

i have 1 text box and combobox. all i want is to enter all data that is type or selected in combobox is showed in list view. can you help me to do that.? and all entered data in listview could be save in database. ^^

Member Avatar for Begginnerdev
0
157
Member Avatar for paoi00

i want to save my picture in database i have these codes but then there is an error . " command text was not set for the command object " how to solve this problem? thank you.! Try If imgName <> "" Then Dim fs As FileStream fs = New …

Member Avatar for salma sally
0
730
Member Avatar for paoi00

i have a combobox that have items form database. the problem is when i selected an item from that combobox it disappeared but still in the choices. i want the combobox.selecteditem should be appearing if i selected it. here's my code : Dim strsql = "select * from DesignationEveryDept where …

Member Avatar for paoi00
0
195
Member Avatar for paoi00

is it possible to send email eventhough in LAN connection using Microsoft outlook ? is it programmable in VB.Net? can someone teach me? thank you !

Member Avatar for Begginnerdev
0
195
Member Avatar for paoi00

how to insert picture to print using PrintPreviewDialog.? I will be Printing a template of an ID and print it. thank yo.,

Member Avatar for Begginnerdev
0
59
Member Avatar for paoi00

is there any easy way to generate an ID in PrintPreviewDialog or other way. i dont get the idea of CrystalReport . and including the picture in the ID that will be generated. Please Help ME.

0
73
Member Avatar for paoi00

I wish to save and retrieve image in access 2007. in our search module , if employee number typed, it could retrieve all information of the employee including the image saved in database(?) if this can be happen?

Member Avatar for Begginnerdev
0
203
Member Avatar for paoi00

how can i upload an image with the same size of the picturebox? can someone help me ? :)

Member Avatar for nmaillet
0
132
Member Avatar for paoi00

i have one table containing 2 columns namely Designation and Department. i want from choosing on DeptnameCB the DesEmpCB will display the corressponding designation to the department chosen. i have this code as of now. Dim strsql = "select * from DesignationEveryDepartment where Department = '" & DeptNameCB.Text & "'" …

Member Avatar for paoi00
0
154
Member Avatar for paoi00

Hello again! :) How can i put a Captured Image by a Webcam in picture Box? I'm Using VB.Net 2008 I dont know what to do. Thanks in advance!

Member Avatar for paoi00
0
315
Member Avatar for paoi00

i used this codes to show the records but this doesnt works .. but when use the query ("Select * from Schedulings") it works .. it shows the all records. but i want to show the records that satisfy this query.. ("Select * from Schedulings where YearLevels = '" & …

Member Avatar for Begginnerdev
0
109
Member Avatar for paoi00

hi.. i want to compare two tables ..in enlistment table will count the number of students that enlisted to the YearLEvel and section selected by user.. then i want to limit that by means of calling it from the table of Schedulings (AvailableSlots Table) here's my code but it doesnt …

Member Avatar for paoi00
0
106
Member Avatar for paoi00

hi there! can you please help me? this codes doesnt have any reponse from the database .. these codes is for case sensitivity of the usernametxtbox and if satisfied, the secretquestion textbox will automatically display the correct secret question. help me pls! Dim i As Integer Dim PassResult As String …

Member Avatar for poojavb
0
241
Member Avatar for paoi00

i need to compare two different tables which are Enlistment and Schedulings Table . in schedulings Table , there was a columnnmae AvailableSlots wherein the AvailableSlots in every sections in every year is recorded.. in Enlistment table, i used to count the number of records that satisfy my query : …

Member Avatar for paoi00
0
207
Member Avatar for paoi00

hello :) i am working with Search module of a student.. there's a link on the form that when clicked the schedule of the student must be shown on Listview in ScheduleStud Form.... actually i used the showmyrecords() on the other forms but when i used it in this module.. …

0
58
Member Avatar for paoi00

i have 3 textboxes and 1 submit button : 1. Username 2. Secret Question 3. Secret Answer when the user inputs their username , the Secret Question automatically appeared in the second textbox , and then put their answer in the third textbox.. just clicking the submit button the system …

Member Avatar for paoi00
0
487
Member Avatar for paoi00

hi! can you help me..? i want to limit how many times can user select the every items inside the combobox to 60. how could i do that? pls help me. :) here's my code in my combobox.. i dont know how to start the codes in limiting.. that' why …

Member Avatar for paoi00
0
306
Member Avatar for paoi00

hello again :D i want to update my database if an enrollee have balance or dont have.. if they have balance , the record of payment of student will be updated.. here's my code : Dim cn As OleDbConnection If TextBox1.Text = "" Then MsgBox("Enter a Student Number! ", MsgBoxStyle.Information, …

Member Avatar for paoi00
0
193
Member Avatar for paoi00

i saw this [article ](http://www.daniweb.com/software-development/vbnet/threads/399212/printing-from-list-view) that shows printing of listview using printdocument.. it helps me but then i want to place my list view on the middle of the page.. i want to know how to place it.. can you please help me? thank youu. !

Member Avatar for paoi00
0
86
Member Avatar for paoi00

hello ! can you please help me..? i want to limit the number of students(60) that will be enrolled in one section and prompt a message that it surpass the limit.... i inserted it in my combobox1 ..here's my code : strsql = "select * from Schedulings where Sections = …

Member Avatar for paoi00
0
87
Member Avatar for paoi00

My textbox6 represents the dateprinted of my asssessment form.. i code it like this : TextBox6.Text = My.Computer.Clock.LocalTime.Date then in the my SAVE Button coded like this : Dim cn As OleDbConnection If TextBox1.Text = "" Then MsgBox("Enter a Student Number! ", MsgBoxStyle.Information, "Warning") ElseIf TextBox1.TextLength = 9 Then con …

Member Avatar for poojavb
0
188
Member Avatar for paoi00

My textbox6 represents the dateprinted of my asssessment form.. i code it like this : TextBox6.Text = My.Computer.Clock.LocalTime.Date then in the my SAVE Button coded like this : Dim cn As OleDbConnection If TextBox1.Text = "" Then MsgBox("Enter a Student Number! ", MsgBoxStyle.Information, "Warning") ElseIf TextBox1.TextLength = 9 Then con …

Member Avatar for paoi00
0
202
Member Avatar for paoi00

i dont know what to do with this codes. when i used this to other forms it runs without error except for the one form. error says : "The ConnectionString property has not been initialized." but then i already initialized it. please help me. Public Sub showmyrecords() Dim lvi As …

Member Avatar for paoi00
0
170