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

Application Developer

Interests
Working out, Scuba Diving, Fishing...
Favorite Forums
Favorite Tags

22 Posted Topics

Member Avatar for gauravvmahhajan

This link will provide examples of how to deploy a .NET app. [url]http://msdn2.microsoft.com/en-us/library/tw8kdk75(VS.71).aspx[/url]

Member Avatar for kvprajapati
-2
2K
Member Avatar for Artgenos

Are you wanting to enter a username then find what computer that they are logged into and then find the mac, ip etc of that computer?

Member Avatar for peter_budo
0
142
Member Avatar for earlofroberts

This should work with a Windows Desktop App; [inlinecode]strText = Me.dgvGrid.SelectedCells.Item(0).Value.ToString & ""[/inlinecode]

Member Avatar for cynix008
0
100
Member Avatar for cs_tx_usa

The column1, row1 stuff kind of confusses me but I think that you are wanting to read a val from file1 and another from file2 and put the resulting value into another file. If so you would use a loop to read file1 to the end while getting a line …

Member Avatar for tathumani
0
264
Member Avatar for freefika

You need to use the Winsock control (an example: [url]http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=2253&lngWId=10[/url]) or another socket control like secure socket library (example: [url]http://www.bigspeed.net/articles/securechatvb7/securechat.html)[/url]. Secure socket library may be a better choice since most examples of winsock that you find will be in VB6.

Member Avatar for slimtugo
0
271
Member Avatar for mpatram

The first thing that you'll need to do is add a reference to the Microsoft Excel Object Library. In your code you will need to create an Excel application object and excel workbooks. Then you should be able to access the file to edit the cells. It may look something …

Member Avatar for rps_x
0
331
Member Avatar for SolTec

Declare a dataset and integer globally and fill the dataset. In the click events of your previous and next buttons put a line that gets the record. [code] 'first, do some validation to make sure that this isn't the last rec 'then inc the rec count intCount += 1 'get …

Member Avatar for emurf
0
71
Member Avatar for nanop1i
Member Avatar for emurf
0
67
Member Avatar for abc_a3

In the selected index change or one of the click events of the list you should put. [code] dim strLine as strin strLine = List1.SelectedItem.Text [/code] That will get you the line, from there you will need to do string splits & string manipulation on your data.

Member Avatar for emurf
0
259
Member Avatar for narender_gandi
Re: Exe

Will this help? [url]http://www.9rays.net/products/Spices.Decompiler/[/url]

Member Avatar for emurf
0
55
Member Avatar for mahvish

First you would write the procedure that you want to execute when the button is clicked. [code] Protected sub button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) 'put your code here end sub [/code] After the button is created you use the addhandler to add the event. [code] AddHandler button1.clicked, …

Member Avatar for Jx_Man
0
69
Member Avatar for omotoyosi

You didn't give much detail about the program but I'm going to guess that it is an ASP .NET app because this problem frequently happens with ASP .NET when implementing roles. With ASP .NET the problem is that the Machine.Config file where the app is hosted list a default database …

Member Avatar for emurf
0
133
Member Avatar for bcm

Try using Microsoft's CDO control. Finding it may be a head ache since there are a bunch of different versions. I think that I was using 6.5 when I wrote this; [code] Private Sub SendMail(ByVal sEmail As String) 'this procedure recieves an email address and sends a message. 'Dim objCDO …

Member Avatar for emurf
0
834
Member Avatar for poonams

You need to add a reference to the Microsoft Excel Object Library and create an Excel object along with a workbook and worksheet in code. As you read the Access data you would write it to the worksheet that you created. These links should give you an idea of how …

Member Avatar for emurf
0
100
Member Avatar for guest11

UInt64 hold integer values ranging from 0 to 18,446,744,073,709,551,615, use System.Convert.ToInt64(VarName) to convert it.

Member Avatar for emurf
0
130
Member Avatar for ruman_eee

To read the word doc you'll need to add a reference to the Microsoft Word Object Library to your project and create a word app object in your code to access the doc. To create a pdf file you should try iTextSharp. It can be downloaded here [url]http://sourceforge.net/projects/itextsharp/[/url] you'll need …

Member Avatar for om_shankar1
0
98
Member Avatar for poonams

CR comes with Visual Studio .Net and you should just be able to register it without paying anything extra, that's what I did. Even after that it was a pain to package. This link should help you along; [url]http://msdn2.microsoft.com/en-us/library/ms314043(VS.71).aspx[/url]

Member Avatar for poonams
0
142
Member Avatar for Tsjelle

Do you have an example of the part of the XML file that has the html (I thought that the html tags would cause an error in the XML file)? You may need to read the XML into a dataset and then retrieve the element that has the html then …

Member Avatar for Oxiegen
0
206
Member Avatar for pelusa

Hello Peluse, say that I have created a public global string var called sParam. In the form load event of your main form put; [code] Me.sParam = My.Application.CommandLineArgs(0) [/code] This stores the recieved parameter in the variable.

Member Avatar for emurf
0
815
Member Avatar for saravanarajan

Is this what you are looking for? 'declare the dataset Dim ds As New DataSet 'bind to textbox Me.textbox1.DataBindings.Add(New Binding("Text", ds, "Tablename.ColumnName")) 'bind combo me.ComboBox1.DataBindings.Add(new Binding("Text", ds, "tablename.columnname")) 'bind the masked text Me.MaskedTextBox1.DataBindings.Add(New Binding("Text", ds, "tablename.columnname"))

Member Avatar for saravanarajan
0
104
Member Avatar for pritia

This was written for 2003 but it still applies in 2005, no big differences made in the deployment between the versions. [url]http://msdn2.microsoft.com/en-us/library/k76aht6s(vs.71).aspx[/url]

Member Avatar for emurf
0
121
Member Avatar for mahendiran

The End.