No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
23 Posted Topics
You can show your update statement or update button event...
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]
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) …
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]
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]
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]
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..
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]
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.
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()
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 …
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 …
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 …
hello! I think the problem is in your query in your getSearch Function. Try to change "OR" to "AND" Hope it works! God bless!
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?
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 …
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?
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 …
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 …
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?
Hello! I want to underline a word in a sentence in vb .net. Any idea?
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, …
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.
The End.
leahrose87