|
Re: installation problem with vs.net web services
1/24/2004 12:15:07 AM
(Total replies: 0)
|
| Hi,
1. Check if IIS is installed properly.
2. Check if the http://localhost works
3. Check if your user name is in the debugger users group
4. In the machine.config inside the processModel tag change th username to system and password to AutoGenerate
Check the following document in the help that is installed with .NET
ms-help://MS.VSCC/MS.MSDNVS/vbcon/html/vxurfwebaccessfailuredialog.htm
Let me know if this helps!
Regards,
Sarang S. Datye
MCSD .NET |
|
|
|
Re: Reading EXCEL Spreadsheet in Asp.net
2/11/2004 7:33:47 AM
(Total replies: 1)
|
| Hi,
You can use the Interop Assemblies for Microsoft Office XP. Check the link below on MSDN
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnoxpta/html/odc_oxppias.asp
They have also given a small example which you might be interested in.
Regards,
Sarang S. Datye
MCSD .NET
|
|
|
|
Re: microsoft word
5/31/2005 9:44:00 AM
(Total replies: 0)
|
| Hi,
Use Microsoft Office XP Primary Interop Assemblies.
For Office 2003 goto: http://www.microsoft.com/downloads/details.aspx?familyid=3c9a983a-ac14-4125-8ba0-d36d67e0f4ad&displaylang=en
For Office XP goto: http://www.microsoft.com/downloads/details.aspx?FamilyId=C41BD61E-3060-4F71-A6B4-01FEBA508E52&displaylang=en
These assemblies wil allow you to read office documents like word/excel/ppts and utilise the information.
Hope that helps. |
|
|
|
Re: In General Bigginer
5/31/2005 9:35:50 AM
(Total replies: 0)
|
| Hi there,
Check out the following site for firebird http://www.dotnetfirebird.org
The relation can be done on the server then then you can pull it in the dataset and then go on updating your table or adding new rows. That will be easier since you would have the schema with you.
|
|
|
|
Re: Saving JPG in VB.NET
4/20/2005 11:14:17 PM
(Total replies: 0)
|
| Hi,
I am not sure if the following link will help, but you might as well go through it just in case you are reinventing the wheel :)
http://www.vbaccelerator.com/codelib/gfx/vbjpeg.htm |
|
|
|
Re: writing a window service in c#
4/20/2005 11:05:45 PM
(Total replies: 0)
|
| Just out of curiosity.....if you are using a database like SQL Server, you can simply schedule a job in SQL Server which will run a stored procedure or a function which does the kind of check that you are wanting to do. In that case, you maynot even write a windows service.
Or otherwise as Shiva rightly mentioned there's lot of code that you can find via google to write a windows service using c#...but obviously the logic for your requirements is something that you have to write yourself ... |
|
|
|
|
|
|
Re: Word Automation in ASP.Net
11/29/2003 2:42:52 AM
(Total replies: 1)
|
| Manoj,
Just a suggestion. You say that things are not working correclty in asp.net (when they are working well with windows application).
What you can do is slightly modify the architecture of you system where instead of making asp.net handle mail merge, write a windows service or a windows application and schedule it using scheduler. and make a little changes to your calling aspx to set up a flag in the database which the windows service will check and create mail merged docs for ... |
|
|
|
Re: help mee!!
10/14/2004 12:57:39 PM
(Total replies: 0)
|
| Dear Apeksha,
It's great to know that you are willing to learn this technology all by yourself. I would personally recommend Microsoft Official Curriculum (Developing Web Based Application using Microsoft Visual Basic .NET and Visual Studio .NET) books.
Also, MSDN is a great help for referencing. Also, I would suggest that if you have an accessible user group in your city for .NET, do attend the UG meets their. Because in UG meets you might get extra help + most of your queries answered ... |
|
|
|
Re: how to run VB.NET application on windows 2000
1/21/2004 11:55:00 PM
(Total replies: 1)
|
| Hi,
There are two ways in which you can do this:
1. On your computer in your VB.NET solution add another project of type setup and deployment projects --> Setup Project. After that, right click on this new setup project and click on Add --> Project Output and then select the VB.NET project that you want to deploy.
Compile the project and your setup.mis fild will be ready. In the dependacies you can also add the .NET framework that you want to deploy.
2. Directly install the .NET ... |
|