notadog's Q&A profile
Visual Basic Create a meeting request by using the Outlook Object Model in Visual Basic .NET
Hi, I would like to build an application in vb.net which is some what similar to old net meeting and one of main feature I would like to implement is application sharing. I tried the netmeeting sdk provided by microsoft but it is very complicated (I'm new to vb.net and samples are in c++). Can anybody in this community give me necessary guidelines which will help me in developing this application or whether there is any third party sdks available for the same. Thanks in Advance Hi BrunoYu, Thanks for the tip. Also I would like to know whether there is any SDKs available for the same so that I can customize it to meet my need. ...Show All
.NET Development This Problem is Killing Me :@
Hello, I have a very strabge problem and dont know what to do. I wrote very simple code to varify the behavior of problem in some big project. I run this Server Code in a Console Application on my PC: class Program { private static TcpListener listener; private static int port; static void Main( string [] args) { port = 7000; listener = new TcpListener(IPAddress.Any, port); listener.Start(); Console .WriteLine( "Server Started" ); TcpClient client = listener.AcceptTcpClient(); Console .WriteLine( "Client Connected" ); NetworkStream ns = client.GetStream(); byte [] data = Encoding .ASCII.GetBytes( "Hello" ); ns.Write(data, 0, data.Length); ns.Flush(); Console ...Show All
Windows Forms Publish error.
Following error happens once in a while, could someone tell me why it is happening Error 68 Publish failed with the following error: Could not find a part of the path 'C:\Development\Test\Test\Source\Shell\bin\Release\Test.publish\Test_1_0_0_9'. Thanks in advance. I would like to know that answer as well. I believe I have only seen this issue when I clicked publish and something failed, such as the build failed. I would guess there is an orphaned app manifest file/publish directory for that revision number that is created. And when you go to publish again using that same build/revision number, it can't successfully overwrite it, or there is some validation that fails. The next time it happens, try and delete the files it c ...Show All
Visual Studio Express Editions Change properties from other forms
Topic says it all ... lets say i got x2 form ..and in form1 i got ritchtextbox how i change its txt or any other properties from from2 or other forms ... e.x in vb i used to do Form1.TextBox.text = ("w/e you want") Im really sorry but i still do not understand can you please! post full Sourcecode of form1 and form2 at form 2 theres a button that change the text of the ritchtextbox in form1. ...Show All
Visual C++ getting SMTP server address
i am writing an application in which it sends mail when user acknowledges something.. to make it more general.. i need to get smtp server address, but not from user.. is there any program i can write to query smtp mail address and then send mail let me know. Given an email address, for example me@somewhere.com , you can perform a DNS lookup to retrieve the MX record for the domain 'somewhere.com'. The DNS response will return the IP addresses of one or more SMTP mail servers that will accept mail for the domain. Applications like Outlook do not perform DNS MX lookups. They expect to be configured with a known SMTP server address to which it will direct all email - for example an SMTP server address supplied ...Show All
SQL Server Foreach endless loop
I'm having a problem where I'm using a Execute SQL Task to retrieve a dataset and storing that in an object variable. Then on success of that execute sql task I use a foreach loop task to go through the dataset and do 2 tasks inside the foreach loop. When I execute this package I have ~12 records in the dataset however when I get to the foreach loop in the 2nd iteration it keeps repeating it. It acts like it is stuck on the second record (tuple) and never goes on. I'm using an ForEach ADO Enumerator in the foreach. I've even set a breakpoint on each iteration and no task fails in side the foreach loop. I'm completely perplexed why it will iterate to the 2nd record but get stuck there in an endless loop. I've tried this on 2 different compu ...Show All
Windows Live Developer Forums spatial queries
Is there a way with the latest release of Virtual Earth to perform spatial queries For example I want to know if a point from my database (like an address) is within a polygon I defined or list all points inside a polygon area... or list all addresses 3 miles from a point. If not then what are my options Pay for MapPoint web service and then is there a way to combine that with Virtual Earth instead of the maps made by MapPoint web service I want to stick with Microsoft but I do know that ESRI has spatial queries feature in their web mapping service. Thanks! Andrew Jones That would be a great feature to add (hint hint) but ok I'll wait for those lurkers to see my question and hopefully help me out ...Show All
SQL Server Updating a part of coulmn value in a table
Hi, I need to update just a portion of a column value in a table. example, Order_data = 'source=ABD00050&ordsrc=&ecode=ABD00001' Order_data ='source=ABD00050&ecode=ABD00001' for both of these values of Order_data I just need to update value of ecode.. Please help.. Thanks, Reva REPLACE Replaces all occurrences of the second given string expression in the first string expression with a third expression. Syntax REPLACE ( ' string_expression1 ' , ' string_expression2 ' , ' string_expression3 ' ) Arguments ' string_expression1 ' Is the string expression to be searched. string_expression1 can be of character or binary data. ' string_expression2 ' ...Show All
Visual C# SaveAll
Hi My question is are there any difference between SaveAs to SaveAll Save As is used to either annoint a new file name or save to a different filename for specific file. Save All will save all open files to their current name. If there is not current name, then a SaveAs is called for the operation for that file only. ...Show All
Windows Forms How to create table with merged cells
How do i create a form that has a table in it where some of the cells are nested tables for example: 4 columns, 4 rows, where the name John uses 2 cells, peter uses 3 cells, and Steve uses only 1. Name Group From_date To_date John eng April 1 March 1 ops March present Peter ops Jan Feb GSS march April Sup April present Steve nil Jan Present Regards, ...Show All
Visual Studio how do I get pull-down menu for "add method, add field, etc" to show?
In all previous versions of VS, when you right-clicked in a class, you were given the choice to add a method, property, field, etc. This is not present in Visual Studio 2005. Does anyone know how to enable this or where is it done now thanks! WRM ...Show All
SQL Server Process AS2000 DataBase from SQL2005 Server Agent
Hi! Want to process AS2000 DataBase that is located on one server from 2005 ServerAgent that is located on other server. SQL2005 Integration Services allows processing only of 2005 OLAP Databases. I could send an xmla-script to as2000 from a task o ServerAgent2005 but I've read that AS2000 doesn't support xmla scripts with process command. How could I do this without migrating 2000 databases to 2005 Thank you in advanced. Mastroyani . The problem is, that on AS2000 machine there's only AnalysisServices installed (No SQL Server and also no DTS). Are there some other possibilities ...Show All
SQL Server Can I install to C and put data on E?
Can I install SQL Express 2005 to C drive but store and run the database from a different partition on the same drive Thanks in advance. Yes you can. When installing from a command line, you can supply the INSTALLSQLDATADIR command to provide a non-default data location. You can also set this after SQL has been installed using the Database Properties tab of the Server Properties dialog. Mike ...Show All
SQL Server Report SnapShot Creation Programmatically through Java
Hi, I am facing some issues while creating report snapshots programmatically using axis (Java platform for creating and deploying web services applications). To create a report snapshot what should be the methods called I tried using UpdateReportExecutionSnapshot() but didn't find any parameters to set the schedule information which would say when the execute the report snapshot. Can you please guide me for this Also I had one more doubt regarding report snapshots. If a parameterized report is configured as snapshot then we would require to set default parameters for the report. Is there a way to create snapshots of the same report with different parameters eg : The employee information report displays the information base ...Show All
SQL Server RSClientPrint
Hi all, I wanted to use the RSClientPrint.dll on my website for printing server documents on the client. But I can nowhere find the dll (activeX). Can someone provide me with that dll or send me a message where to find it, and will it work without Reporting Services TIA, Dirk Ooms You can find the dll embedded in the rsclientprint.cab file of your Reporting Services installation. Or, if you install the active-x control, you can find the dll in %windir%\Downloaded Program Files. Make sure you install all of the files (.dll, .rll and .ini) if using the print control directly. ...Show All
