800 Posted Topics

Member Avatar for shahpar.prithul

How about something like engineering a network for a hospital or a school? How about engineering a network for a rural location using a satalite? How about engineering a network for secure communications? (Like government)

Member Avatar for jayeed38
0
111
Member Avatar for DyO1

Are you trying to add multiple cells in a single row? Dim lvi As New ListViewItem With lvi .Text = "Column1" .SubItems.Add("Column2") .SubItems.Add("Column3") .SubItems.Add("Column4") End With ListView1.Items.Add(lvi) If you are wanting to add a column to the listview try: ListView1.Columns.Add("ColumnName")

Member Avatar for Reverend Jim
0
177
Member Avatar for bullet_1
Member Avatar for Begginnerdev
0
181
Member Avatar for jared.geli

Try changing your fill statement to incorporate a table name: adpt.Fill(DtSet,"Data1") Now you can access the table like so: IF Not IsNothing(DtSet.Tables("Data1")) And DtSet.Tables("Data1").Rows.Count > 0 Then 'Do work End If

Member Avatar for jared.geli
0
763
Member Avatar for danielgr

Try changing your class to have a new instance of List(Of Student) For example: <Serializable()> _ Public Class LessonPlans Private lstStudents As New List(Of Student) Public Property Teacher As String Public Property RoomNumber As String Public Property Subject As String Public Property Students As List(Of Student) Get Return Me.lstStudents End …

Member Avatar for danielgr
0
266
Member Avatar for debrah.rutherford

What language is the code posted above? As far as conversion, why are you ***BLINDLY*** Converting to VB.NET?

Member Avatar for oussama_1
0
256
Member Avatar for Yna Aurielle

What database backend are you using? If it is SQL, you can look for the dates using a select - between statement: "SELECT Count(*) As Count From Table1 WHERE (Date1 BETWEEN '" & Date1 & "' AND '" & Date2 "') OR (Date2 BETWEEN '" & Date1 "' AND '" …

Member Avatar for Reverend Jim
0
382
Member Avatar for vbforum

With microsoft's migration to Outlook.com I would not be so sure the hotmail host is online, they could have migrated to a new server / ip as well.

Member Avatar for Begginnerdev
0
97
Member Avatar for skran

Check your database to make sure that the data type is set to date time. If that is not the case, if you are using a string, parse as a date then pass into the string. You can use Cdate to do this.

Member Avatar for eldarzeynal
0
1K
Member Avatar for elie.karkafy

You will want to open a stream reader to the file and pull all lines in from the file. You will then have to remove the spaces from the lines to extract the infromation you want. This can be done like so: Private Function FillStringList(ByVal sFileName As String) As List(Of …

Member Avatar for oussama_1
0
351
Member Avatar for joester007

If you are receiving the prompt above then you have more problems than that code. ^_^ I do not see the message box which you are talking of. Is this code snippet the full code? (**I am assuming it is because of the class tags**)

Member Avatar for Begginnerdev
0
171
Member Avatar for nilesh7136

You can look into using LINQtoSQL or some kind of business objects. LINQ to SQL automatically generates the relationships on object creation. (retrieval) With a business object model, you will write each object type - giving you complete control over how it acts. For example: Public Class Location Public Property …

Member Avatar for Begginnerdev
0
296
Member Avatar for debrah.rutherford
Member Avatar for gmmorpheus

I am sorry to sound harsh, but what are we supposed to be improving? What part of your code are you having a problem with?

Member Avatar for Begginnerdev
0
260
Member Avatar for JohnKelly

If the other application is sending out six bytes, could it be Int32 with a 2byte for a character? (Shooting in the dark.)

Member Avatar for Begginnerdev
0
87
Member Avatar for debrah.rutherford

You can find the commands to do so [here.](http://hamidseta.blogspot.com/2008/05/install-mysql-server-50-silently.html) The link above is said to be a .bat file. You can launch a .bat from vb.net like [so](http://stackoverflow.com/questions/2178872/run-batch-file-in-vb-net)

Member Avatar for Begginnerdev
0
94
Member Avatar for acaisan

I would suspect your select/fill code to have a fixed index. Have you checked to make sure? Or am I misunderstanding the question?

Member Avatar for Begginnerdev
0
416
Member Avatar for Pride

Why not try your luck at a custom browser? ( I didn't see a browser in the list. )

Member Avatar for sashyn01
0
402
Member Avatar for NoCodeMonkey

1066Mhz is the speed that ram will send/receive data. The kit that you are looking at is an 8gb kit. (8192mb kit) This is the amount that will be added to your memory bank.

Member Avatar for Greg_z
0
290
Member Avatar for pedders

You will need to look into using Word interopt. [Here](http://miracle00.weebly.com/1/post/2012/5/add-page-border-in-word-document-with-c-vbnet.html) is an example in C# and VB.Net [Here](http://www.e-iceblue.com/Knowledgebase/Spire.Doc/Program-Guide/How-to-Insert-Page-Border-in-Word-with-C-/VB.NET.html) is an example in C# A good C# to VB.NET converter can be found [here](http://converter.telerik.com/).

Member Avatar for pedders
0
145
Member Avatar for kazekagerandy

[Here](http://www.codeproject.com/Articles/23883/Using-MessageQueue-in-the-NET-Framework-2-0) is an oldy but a goody that will get you started on MessageQueues

Member Avatar for Begginnerdev
0
143
Member Avatar for G_Waddell

Possible cause is Word automaticly adds a blank page on load. Is it possible that when you call the Create that is loads word into memory with the assumption of a start with blank page??

Member Avatar for G_Waddell
0
257
Member Avatar for Ahmed.C

You will need to look into encryption methods. I think the industry standard is 256 AES encryption at the moment. [Here is a small project on CodeProject](http://www.codeproject.com/Articles/10154/NET-Encryption-Simplified) that will get you started.

Member Avatar for Ahmed.C
0
189
Member Avatar for stilgharc

[WikiBooks](http://en.wikibooks.org/wiki/Visual_Basic_.NET) is a decent starting point.

Member Avatar for Begginnerdev
0
113
Member Avatar for intes2010

[Here](http://stackoverflow.com/questions/14333245/anonymous-http-web-request) is a forum post in StackOverflow when a user posted information on this very subject! I hope it helps!

Member Avatar for intes2010
0
452
Member Avatar for ADPYvette

You will need to find out what library you wish to use. For example: System.Data.SQLClient System.Data.OleDB System.Data.* 'Microsoft loves re-inventing the wheel As for the connection, you need to find the correct connection string to the database. (See [here](http://www.connectionstrings.com/).) Next you will have to determine which method of manipulation is …

Member Avatar for ADPYvette
0
209
Member Avatar for Jayme65

Here is a link to an application that reads on a pretty low level. (MFT) This would be quicker, but possibly some unnessesary overhead. The problem alot of programmers have, including myself, is the habbit of over engineering an application. Sometimes simpler is better.

Member Avatar for Begginnerdev
0
215
Member Avatar for Mayra71

Without specifying what sonic is we can not give a very good answer. When you say Sonic, I am assuming Sonic ESB. The development documentation can be found [here](http://documentation.progress.com/infocenter/sonic/8.5.1/index.jsp?topic=/com.sonicsw.doc/Invoking_Web_Services_from_Sonic_ESB_Processes.html).

Member Avatar for Begginnerdev
0
320
Member Avatar for renzlo

I have not used blobs personally, but here is an [article](http://www.vb-tips.com/datasetimage.aspx). I hope it helps!

Member Avatar for Begginnerdev
0
531
Member Avatar for aalshamr

Such a broad question makes it very difficult to give a good answer. When you are wanting to store the check boxes, are you checking for yes/no values or something like options a new vehicle? If you are storing yes/no then it is as simple as storning them in bit/tinyint/boolean …

Member Avatar for Begginnerdev
0
1K
Member Avatar for maxpowr

You will need to look into using a setup wizard. Something like [InnoSetup](http://www.jrsoftware.org/isinfo.php) or [InstallShield](http://www.installshield.com/) would do what you are wanting. As for creating the database, you will probably have to write a script or module that can be fired from the setup wizard. Something like vbscript or a vb …

Member Avatar for Begginnerdev
0
330
Member Avatar for guente

Does the DataGridView in the sales form have AutoGenerateColumns enabled while the Purchase does not?

Member Avatar for guente
0
981
Member Avatar for pratik65

The problem is that you are setting it to just the file name. You have to give a full path (or relative if it remains constant) to the file location and it's name. But as yvrej17 has stated: > Click your form and set your background image in properties. Simple …

Member Avatar for abhi159
0
24K
Member Avatar for nerden

Have you tried cycling through the code in debug to see what the log names are? Just place a break point before the loop, step into the loop (F11) then hover over the entry variable. (You should change it to For Each e As Entry in objLog)

Member Avatar for nerden
0
2K
Member Avatar for ricardo.scheufele

By seeing this code, I assume that you are using a form of data hiding. That being said, the code posted works and should not create such a problem by its self. Run a find all references and see where else the value is getting changed for your string.

Member Avatar for tinstaafl
0
865
Member Avatar for wesh09

One problem that may occur is if D: is mapped to a network drive and the database is being used by some one else. (D: might not be the same drive for them)

Member Avatar for Begginnerdev
0
201
Member Avatar for Passoword!!

You will greatly sacrfice performace by iterating through 20k records. If you are worried about duplicates, just remove the item saved from the listview. (Keep them from clicking it again) If you are still wanting to save everything, just iterate through and pull in values you want.

Member Avatar for Begginnerdev
0
727
Member Avatar for lexaeterna

Are you going from SQL Server to SQL Server? If so, you can use the MS Import/Export wizard to migrate data. If not, what are you migrating to?

Member Avatar for Begginnerdev
0
160
Member Avatar for Ahmed.C

My untrained eye cannot see any hard coded reference to your external drive. Is it possible that the application is finding something like a sd card reader and labeling it as a removable media?

Member Avatar for tinstaafl
0
205
Member Avatar for intes2010

After doing a quick view source of google - it looks like what you really want is wrapped inside <cite> </cite> tags, and not href.

Member Avatar for Begginnerdev
0
500
Member Avatar for xHubesekesx

If user names are unique you can select them from the table. If your user passwords are not encrypted, and are plain text (**I HOPE AND PRAY that this is only a exercise!**) Then you can just check the password field. For example: Private Function Autherized(ByVal sUser As String, ByVal …

Member Avatar for Begginnerdev
0
934
Member Avatar for shashikumar s g

After a quick session with Google - I've [found](http://dev.mysql.com/doc/refman/5.1/en/connector-net-programming-crystal.html) this article.

Member Avatar for Begginnerdev
0
941
Member Avatar for nosfa

Your code looks like it could be reduced by using List(Of String) Dim myList As List(Of String) Then you could add elements by valling the .Add function. myList.Add("Hello,") myList.Add("World!") Then to iterate through the list just do a simple for each: For Each s As String In myList MsgBox(s) Next …

Member Avatar for Begginnerdev
0
372
Member Avatar for guente
Member Avatar for subrata_ushasi

Something like this may work: if (strpos($str, 'StringHere') !== FALSE) echo 'Found it'; else echo "nope!"; Answer was found [here](http://stackoverflow.com/questions/13577041/php-string-contains).

Member Avatar for flashhtml5
0
168
Member Avatar for pc20912

You first need a way to refrence the student for the update. An ID column works perfect for this. You will need to reference the text box values, therefore, need to name the nextboxes something that can be descriptive. For example: For Each DR As DataRow In DT.Rows Dim tpNew …

Member Avatar for Begginnerdev
0
179
Member Avatar for nikki05
Member Avatar for docgrid

[Here](http://bytes.com/topic/visual-basic-net/answers/498531-bring-already-running-app-front) is a forum post using the Windows API to get the process and bring it forward. I hope this gets you on your way.

Member Avatar for kRod
0
796
Member Avatar for nashy13

[Here](http://social.msdn.microsoft.com/Forums/vstudio/en-US/f3f5a61f-2ab9-459e-a1ee-c187465198e0/how-to-create-group-policy-object-programmatically-using-net-and-c) is a link to an example which can get you started.

Member Avatar for Begginnerdev
0
71
Member Avatar for shena
Member Avatar for Begginnerdev
0
63

The End.