Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #2K
~11.3K People Reached
Favorite Forums

27 Posted Topics

Member Avatar for ziphyx

you can save this as a string and then on = break it down and do the calculations. be careful to keep the correct hierarchy of calculations or you results will not make any sence. ps: i thought this is a vb.net forum

Member Avatar for Mr.M
0
1K
Member Avatar for mitchiexlolz

1. Try adding a try catch statement in your code in order to get all possible errors. (also try posting the function that runs the sql query in order for us to help you- maybe that function rolls back) 2. how are you trying to see the database. through your …

Member Avatar for Mariandi
0
188
Member Avatar for danielgr
Member Avatar for Sinduja Arun

propably the dates arenot in the correct format. try using sql parameters it will help you alot

Member Avatar for Mariandi
0
159
Member Avatar for ryan311

If understand correctly you need to identify if 'abc' is part of the inserted string. this can be done be using the existing functions of vb.net like this Dim SearchString as string ="abc" Dim userstring As string= textBox1.Text If userstring.contains(SearchString) then messagebox.show("String Found") Else messagebox.show("String not Found")

Member Avatar for Mariandi
0
332
Member Avatar for markdean.expres

If you are not going to sort your rows at runtime you can also sort them when you retrieve them from the Database

Member Avatar for markdean.expres
0
131
Member Avatar for Josef01

First of all you are using an sql that need a parameter (@ID) and you don't provide that parameter. you need to tell the db what is that ID that you want to delete. cmd.addparameterwithvalue('@id',[the selected row ID]) Secondly i would first delete from the Database and from the grid …

Member Avatar for Josef01
0
194
Member Avatar for vn412

' Create a new table & add columns. Dim myDataTable As New DataTable("Users") myDataTable.Columns.Add("ID", System.Type.GetType("System.Int32")) myDataTable.Columns.Add("Name", System.Type.GetType("System.String")) myDataTable.Columns.Add("Surname", System.Type.GetType("System.String")) ' Add the new table. Me.ds.Tables.Add(myDataTable) For Each row As DataGridViewRow In Me.myGrd.Rows ' Fill datarow. Dim mydRow As DataRow = myDataTable.NewRow() mydRow(1) = "ID" mydRow(2) = "NAME" mydRow(3) = "Surname" …

Member Avatar for Mariandi
0
2K
Member Avatar for zepi

there is not difference between those two except the fact that one of them is more readable because you used with [] statement

Member Avatar for Mariandi
0
138
Member Avatar for sipchen

Why you don't just pass the first form as a parameter to the second form. it's much simpler and more "clean" and basically you use the forms as object which is the whole point of OO Declare a property on form2 Private mForm1 As form1 Public Property objForm1 () As …

Member Avatar for Mariandi
0
2K
Member Avatar for mogaka

Just suppress the unwanted sections through the section expert. you can find that when right clicking on the section you want to remove

Member Avatar for Mariandi
0
69
Member Avatar for winkler
Member Avatar for tendaimare

try [code] with newrow .Columns.Add("Name", System.Type.GetType("System.String")) .Columns.Add("Surname", System.Type.GetType("System.String")) end with newRow("Name")=txtname.text newRow("Surname")=txtsurname.text 'Add row to datatable dt.Rows.Add(newRow) [/code] I haven't test it but it should work

Member Avatar for Mariandi
0
239
Member Avatar for FrodoBaggins

just a quick question/ observation If x is declared as string how did you manage to compare it as integer e.g:If x = 0 Then

Member Avatar for Mariandi
0
113
Member Avatar for jlego

i dont really agree with all the above(although i do agree with some of these) the only real reason for me to change you naming habits it is to make your code more readable and more understandable by others( for instance your co-workers). you should use your company's standards- that …

Member Avatar for jlego
0
171
Member Avatar for fieryidris

pls try to use plain english because some of us can really ready appreviations and slang words

Member Avatar for Mariandi
0
1K
Member Avatar for ManicCW

2)yes you can send messages from system to mobile using a GSM device and creating the appropriate functions to use the GSM device. 1) i don't think that is possible, you should try asp.net which i hear is not that different from vb.net( although it is hearsay)

Member Avatar for Mariandi
2
342
Member Avatar for Rox Vi

You can also, create a structure and return an instance of that structure. the structure can contain as many values as you want of any type

Member Avatar for Mariandi
0
153
Member Avatar for Mariandi

I'm trying to create a smal paint component( similar to MSpaint but not the same thing) in vb.net. I have a panel that holds the background image and a picturebox over the panel that I draw on. I'm using graphics to draw shapes and I have my own custom double …

Member Avatar for crapulency
0
215
Member Avatar for planem997
Member Avatar for herit02

I know is not exactly what you want but u can use the split function to get the string after xyz123 and the again the same for the end delimiter and the concatenate the start & middle & end as you like

Member Avatar for GeekByChoiCe
0
135
Member Avatar for perryg30313

i don't know if this will help but try setting the row SelectionMode = fullrow even temporallily. then do grid.row(index).selected = true

Member Avatar for Mariandi
0
111
Member Avatar for kiryoku

i don't really understand the question. can u give an example? [QUOTE=kiryoku;1331710]can anyone help me to figure out how to nest forms on visual basic?? example: i would like to link form1 to form2?[/QUOTE]

Member Avatar for mbrown686886
0
112
Member Avatar for prvnkmr449

if you are going to sell ur application somewhere its a good idea to buy the icons because clients and copywrite laws don't really mix well. [url]www.iconshock.com[/url] if you are not going to sell it [url]www.iconspedia.com[/url] is quite well

Member Avatar for prvnkmr449
0
373
Member Avatar for bettybarnes

if you are using a gridview just get the data from the db and rebind the gridview as you do when you open the form the first time. refreshing the whole page(although i use it) gives an awful flickering that u can't get rid of.

Member Avatar for bettybarnes
0
196
Member Avatar for OldQBasicer
Member Avatar for Mariandi
0
207
Member Avatar for Mariandi

hi i guess the title pretty much states the question but i will give the senario to be more clear. i have a mousemove() event which i add in my program programmatically and i need a way for raising that event (again) programmatically too. raiseEvent control_mousemove() doesn't work as it …

Member Avatar for Mariandi
0
1K

The End.