Forum: Visual Basic 4 / 5 / 6 Sep 8th, 2005 |
| Replies: 0 Views: 1,915 I have an issue like, I need to insert data from an XML file into MS Access table. I am able to do this with ADO as one by one row. But this terribly hits the performance when the number of rows to... |
Forum: ASP.NET Jun 17th, 2005 |
| Replies: 4 Views: 29,025 For the whizkids out there, CAPICOM library is available in the following URL:
http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=860EE43A-A843-462F-ABB5-FF88EA5896F6 |
Forum: ASP.NET Jun 17th, 2005 |
| Replies: 4 Views: 29,025 This is an update for this thread. If we use digital certificates purchased from Certification Authorities like Verisign, a second dialog box with the Publisher name (with my company name as... |
Forum: VB.NET Jun 13th, 2005 |
| Replies: 6 Views: 79,749 There are lot more capabilities in VB.NET than in VB6 -
check out:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vbCode/html/vbtskCodeExampleDrawingLineOnForm.asp |
Forum: ASP.NET Jun 13th, 2005 |
| Replies: 1 Views: 10,222 There are a couple of msm files (managed modules, remember?) for bundling crystal reports with applications. And there are a couple of licence issues too...
You might want to checkout... |
Forum: VB.NET Jun 13th, 2005 |
| Replies: 1 Views: 9,626 I hope you are using SQL Server. you can run a command for sp_tables right? - populate the resultset in the treeview. |
Forum: VB.NET Jun 13th, 2005 |
| Replies: 1 Views: 4,434 From the code, what i understand is when u click the button, the random number is generated and that particular word is pulled out. If it is NOT used then you are taking that word. But what if it is... |
Forum: VB.NET Jun 13th, 2005 |
| Replies: 2 Views: 5,740 Do you want to exclude just sundays? or you already have a list of public holidays? how are u defining a public holiday? |
Forum: ASP.NET May 31st, 2005 |
| Replies: 4 Views: 29,025 You are right. We again checked with Microsoft. They have confirmed this warning cannot be evaded even if we use digital certificates. No other way but to compromise with this. |
Forum: C# May 12th, 2005 |
| Replies: 1 Views: 9,718 I hear lot about this. Can anyone let me learn what is "Symmetric" and "Asymmetric" (or Public Key) encryption?
Any links also appreciated. |
Forum: ASP.NET May 10th, 2005 |
| Replies: 4 Views: 29,025 Hi
I have a web page - in that i give a link to exe file. When the user clicks on the link the exe is supposed to be downloaded and executed in the user's system. (I am not writing any malicious... |
Forum: ASP.NET May 9th, 2005 |
| Replies: 1 Views: 6,807 You can use the ItemDatabound event in the datagrid for this. Add this ItemDataBound event of the datagrid and inside the event function - you could do something like in the following code:
If... |
Forum: ASP.NET May 9th, 2005 |
| Replies: 0 Views: 2,305 I see many of the sites like yahoo mail are using a technology "Web beacon". (You can see this in their privacy/private policy statements). I couldn't get much information about this. All i know is,... |
Forum: C++ Sep 8th, 2004 |
| Replies: 6 Views: 2,388 could you explain lil more? (if you wish, my mail id is srikkanthan@yahoo.co.in) |
Forum: VB.NET May 25th, 2004 |
| Replies: 2 Views: 5,075 am i wrong or unclear about my issue... |
Forum: VB.NET May 13th, 2004 |
| Replies: 2 Views: 5,075 Let me add one more, If you create a com+ component with ActivationOption.Server, you can't have methods that return objects (MarshalByRef)... I tried and got Remoting exceptions...
Only in... |
Forum: VB.NET May 12th, 2004 |
| Replies: 2 Views: 5,075 I never get ok with the COM+ contexts... There are so many context types like client context, call context etc... Adding to this .NET provides few attributes such as MustRunInClientContext... I... |
Forum: VB.NET May 12th, 2004 |
| Replies: 8 Views: 8,747 why don't u try and a reference to System.Web assembly (Project->Add Reference).... |
Forum: VB.NET May 12th, 2004 |
| Replies: 6 Views: 34,928 You can also set the DropDownStyle property in the ComboBox to get an editable combo or dropdown list... |
Forum: ASP.NET May 12th, 2004 |
| Replies: 2 Views: 17,569 Compare the data where... if in the client side, while loading the page itself you need to put the initial value in some javascript variable or hidden control. If in the server side, you can actually... |
Forum: ASP.NET May 12th, 2004 |
| Replies: 7 Views: 11,008 It strikes me that the application downloaded this way (href="<<url>>\xyz.exe") runs under partially trusted context. So as you have mentioned about WMI et all... i am not sure u can do that...
... |
Forum: VB.NET May 10th, 2004 |
| Replies: 6 Views: 52,069 I am not sure what exactly you want to do... Obviously by looping through
mySet.Tables(0).Rows(i)("PERMISSION_BUTTON_ID") you can get all button ids... right?! |
Forum: ASP.NET May 10th, 2004 |
| Replies: 7 Views: 11,008 Simply you can put a href to that exe.
See these links:
http://msdn.microsoft.com/vbasic/letters/20030627/
http://www.sellsbrothers.com/wahoo/ |
Forum: ASP.NET May 10th, 2004 |
| Replies: 4 Views: 10,755 Hi,
I have one ASP.NET page which allows users to upload their files which are stored in another system (file server) through simple network share. The code is as simple as
... |
Forum: ASP.NET May 10th, 2004 |
| Replies: 5 Views: 8,601 See, the information about C++/CLI 2005:
http://msdn.microsoft.com/visualc/default.aspx?pull=/msdnmag/issues/04/05/visualc2005/default.aspx |
Forum: ASP.NET May 10th, 2004 |
| Replies: 0 Views: 6,108 In ADO and VB6, you can just place some textboxes and ADO Data control and bind those textboxes to the data control and columns. Simple that you can navigate through records easily by just clicking... |