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
Ranked #2K
~13.8K People Reached

23 Posted Topics

Member Avatar for Jollyyy100
Member Avatar for anashidayat
0
5K
Member Avatar for cocoll

try this site it may give you idea how to do it... [url]http://www.asp.net/data-access/tutorials/displaying-binary-data-in-the-data-web-controls-cs[/url]

Member Avatar for Shilpakmthn
0
2K
Member Avatar for leahrose87

Hello friends! I am creating a report, Abstract of Bid/Canvass, which will show all the supplier who bids. This also show what item is awarded to a certain supplier through showing the item row number and ranging it like 1-5. I've already created stored procedure that will show the range(s) …

0
100
Member Avatar for xfrolox

Just set your Parent form property using this code: [CODE] 'if you want your other form to be in the center of your Parent form Me.StartPosition = FormStartPosition.CenterParent 'if you want your form to be display in the center of the screen Me.StartPosition = FormStartPosition.CenterScreen [/CODE]

Member Avatar for xfrolox
0
227
Member Avatar for TrueVb.NetNoob

try this link it may help you: [URL="http://devcity.net/Articles/94/1/multipleforms.aspx"]http://devcity.net/Articles/94/1/multipleforms.aspx[/URL]

Member Avatar for codeorder
0
613
Member Avatar for smdhas

I prefer that you must assign your datetime variable datatypes to String because datatype date will give you an output date and time values that's why you are getting those error. Try this: [CODE] Dim datetime as string datetime = DropDay.SelectedValue & "/" & DropMonth.SelectedValue & "/" & DropYear.SelectedValue [/CODE]

Member Avatar for leahrose87
0
309
Member Avatar for Dcurvez

What database are you using?Is is mysql, oracle or microsoft sql?Please specify, so that I can explain to you what you should do..

Member Avatar for Dcurvez
0
119
Member Avatar for judithSampathwa

Try to check if your SQL server allow remore connection. For further information, try this link: [URL="http://support.microsoft.com/default.aspx?scid=kb;EN-US;914277"]http://support.microsoft.com/default.aspx?scid=kb;EN-US;914277[/URL]

Member Avatar for leahrose87
0
154
Member Avatar for scottjo

What is the value of your variable p? If the length of your array can hold 4 value, then the indexes of those value in your array will 0,1,2,3. Note: Please be reminded that array index always start at 0.

Member Avatar for leahrose87
0
171
Member Avatar for tungnk1993

You can also use picturebox. Also follow what Oxiegen said, the only different is your using the picturebox. PictureBox has an event function PictureBox1.Click()

Member Avatar for leahrose87
0
120
Member Avatar for naka1888

I assume that your data displayed in your gridview is from a database. To make sure you can update the value in your gridview, you must first update your database using this syntax: Update Table_name set stocks="value" where productid="theSpecifiedValue" Then you must create a separate method that will load the …

Member Avatar for leahrose87
0
71
Member Avatar for pooja yadav

You must first get the value in the database then set that value. For example: [CODE] 'getValue is a function that will get a scalar value from you database. Dim pDate as Date = getValue("Select getDate() as date",commandtype.text) 'if you want to display it in a label with your desired …

Member Avatar for simi pillai
0
145
Member Avatar for leahrose87

Hello guys! I have so many form to manage. I want to count the instances of a particular form. For example, if I show my form1 two times then there must be a counter for my form1 and if I also shown my form2 another counter for form2. I want …

Member Avatar for Oxiegen
0
2K
Member Avatar for Maya Pawar

hello! I think the problem is in your query in your getSearch Function. Try to change "OR" to "AND" Hope it works! God bless!

Member Avatar for leahrose87
1
93
Member Avatar for leahrose87

I have so many form in different module in one solution. I already instantiate a new Form as a global variables in my parent form. Then, call the code [CODE] frm.show() [/CODE] in my button1 event any idea?

Member Avatar for leahrose87
0
104
Member Avatar for Nikon70

hmmm you can try this: [CODE] Dim dr As DataRow Dim dt As New DataTable Dim da As New SqlDataAdapter Dim sqlSelect As String = "Select * from tableName order by col1" Dim myConnection as New SqlConnection(Connection) 'Create a function that will return the connection String Dim mycommand as New …

Member Avatar for mfas
0
109
Member Avatar for leahrose87

hi! I am developing a window based application. I want to show my menu to be separated by a vertical separator. Just like this: File | Edit Anyone?Is it possible?

Member Avatar for leahrose87
0
2K
Member Avatar for Nelson Fana

you can set the panel visible property true or false. For example, when you click the Button1 it will show the panel1 visible and the panel2 to hide then set this code in your button [CODE] panel1.visible=true panel2.visible=false [/CODE] Another case, when you click button2 the panel2 will show and …

Member Avatar for leahrose87
0
104
Member Avatar for leahrose87

Hello! It may sound silly but I really need help. I am just a beginner in vb .net. I am now developing a window-based software. This is the problem: 1. After the user log-in, the system must show the parent form and automatically show the main transaction form base on …

Member Avatar for leahrose87
0
543
Member Avatar for leahrose87

I have two form the parent form with the menu list and the child form. I want to show the two form simultaneously or the main menu first and then the child form.Is it possible? Any idea?

Member Avatar for pritesh2010
0
203
Member Avatar for leahrose87
Member Avatar for molivia03

You must create a function that will determine if that day is a saturday or sunday. It must return a boolean value. Then, check the number of day in a month. Create a loop that will show all the day in a month of a specified year. Inside the loop, …

Member Avatar for molivia03
0
104
Member Avatar for Mr Programmer

What do you mean change text dynamically? In your code, it will result that every time you click the button your Label1.Text will change.

Member Avatar for Mr Programmer
0
174

The End.