Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~8K People Reached
Favorite Tags
Member Avatar for dejanc

Hello, I'm still working on project filter SqlDataSource with parameters. 1.Button1 is my first develope code which is working fine with Dropdownlist controls. 2.But, now I want to move to filter with Checkboxlist items. I have write code under Button2_Click event. I have combine codes of my current knowledge which …

Member Avatar for hericles
0
140
Member Avatar for dejanc

Hello daniweb, Need someone to show how to get value from gridview column into textbox. For example if I have EmailGridview with 2 columns ID, and EMAIL. And would like under gridview to show Email value also in textbox. I'm still learning vb.net, and I was trying to do many …

Member Avatar for poojavb
0
3K
Member Avatar for dejanc

Hello, I'm need to create a small report to be send automaticliy from VB.NET Windows application. I have wrote below code which is workin on my private PC, and with Gmail settings, such as username + password + smtp.gmail.com, etc... But with, my work informations, like my proxy ID + …

Member Avatar for dejanc
0
1K
Member Avatar for dejanc

Hello, I would like to get message, or true result when DataSet get new record (new row). But, I always get message as "no". Button1 is add new record [CODE]Me.Table1BindingSource.AddNew() [/CODE] Button2 is save a record [CODE] Me.Validate() Me.Table1BindingSource.EndEdit() Me.TableAdapterManager.UpdateAll(Me.TestDataSet) [/CODE] Button3 should return "Yes" as new record has been …

Member Avatar for dejanc
0
2K
Member Avatar for dejanc

Hello, I have a big problem with opening asp.net website. I have building asp.net website months. Yesterday I have install a fresh Windows7, and after that install Visual Web Developer 2010 express from which I have build website. Now when I open webiste in Web Developer, and browse with Internet …

Member Avatar for aspproject
0
268
Member Avatar for dejanc

Hello, I would like to disable a specific items from DropDownList. I have below code but it does not working. So, need someone to told me what I'm doing wrong. DropDownList have 5 items. And, I'm getting error: Index was out of range. Must be non-negative and less than the …

Member Avatar for Mitja Bonca
0
192
Member Avatar for dejanc

Hello, I have access database which have hyperlink column, and values as "/yes.bmp", "/no.bmp". Then in asp.net have a GridView with ImageField which in browser will show Yes image, or No image. ImageField Properties >> DataImageUrlFormatString: ~/images/{0}.jpg. My goal is to get in vb.net code a value from GridView's imagefield. …

Member Avatar for dejanc
0
384
Member Avatar for dejanc

Hello, I'm trying to place select hyperlink, or button to get item details on another page. In DataGrid control it is very easy to do it, I have just add HyperLinkField, and add Url parameter details.aspx?id={0}. I have tried with below code, but of course it is not working, as …

0
71
Member Avatar for dejanc

Hello, I have below code for form login using validation from access database. In database I have now three columns, for user, for password, and new one for department. Can someone show me how can I add also a deparment for login validation? Maybe to adda combobox under password and …

0
64
Member Avatar for dejanc

Hello, I would like to filter Gridview1 with, control checkbox, and code as "If GridView1 rows of column FirstName have value 'John' then show only this rows." I have somehow with network help write this code. But code is not working as it should, and also I do not know …

Member Avatar for dejanc
0
176
Member Avatar for dejanc

Hello members of CodeProject, I have a project, a database with employee information (name, town, birthday, HireDate, etc). I have add custom TextBox (on fly), and on that TextBox a code: [CODE]TexBox1.text = DateDiff("d", HireDateDateTimePicker.value, Now) [/CODE] which is calculating how many days worker is working in company from HireDate, …

Member Avatar for dejanc
0
158
Member Avatar for dejanc

Hello VbForum, I`m migrating access database to vb.net. I have employee database with a few DateTimePickers, textboxes, and comboboxes In access I have formulas in textbox's control source like this, and it works: [code] txtDayCalculation =DateDiff("d",txtDateofHire, txtManualDate) txtYear =Int(txtDayCalculation/365) txtMonth =Int((txtDayCalculation-(txtYear*365))/30) txtDay =((txtDayCalculation-txtYear*365))-(txtMonth*30). [/code] So, I have trying to do …

Member Avatar for dejanc
0
504
Member Avatar for dejanc

Hi, I have a form with gridview data with database data. With query I run INSERT INTO from one table into another, with button. I would like when I run procedure, also reset/update/refresh gridview with new import data??!! For info, I have try with some methods, such as me. gridview.refresh() …

Member Avatar for dejanc
0
392