Scott P.'s Q&A profile
Windows Live Developer Forums Msn seems to be something wrong in my computer>
Hello there, (to everyone). I wanted to ask everybody opinion about these problem i facing. First, there is no question and solution on the help section of msn messenger. Hence, my msn messenger cannot send file, i mean transfer file to my buddy. Is all my friends i cannot transfer any file. ( i scan before my computer and no virus indicate). Continue, for my hotmail i cannot send attachment. ---------------------------------------------------- ...Show All
.NET Development DataView with DateTime comparation
I have a DataTable which has a DateTime column . I want to view in my DataGrid only the rows that has any date and their time is between 12:00 and 16:00 how can i compare only the time What you do is create a DataView over the DataTable and set the DataView's RowFilter property to some expression that will filter down the results. Then attach the DataView to the DataGrid. So DataView is like ...Show All
Windows Forms TreeView for Menu - Newbie
Hi All, I have a TreeView setup with 2 Items on it. Node1, Node2. I would Like to be able to open a form called Form1, when I double click on Node1, Form 2 when I double click on Node 2. I`ve done a google search but can`t find to much info on it. Could somebody possible point me in the right direction with a bit of code or link please Many Thanks Si That worked like a treat! Excellent. Many Thanks for you help. I think I ne ...Show All
Visual Basic dockable toolbar
Hi, I hope someone can help me. I would like to create a dockable desktop toolbar for my application similar to the one windows media player 10 has. I have been searching the net for a vb.net solution but have only found and read about IAccessible Interface which does not seem to be available in visual basic and also a class toolbarwindow32 that is said to be in some c++ header file can someone plz help!! I've looked for that too, but did ...Show All
Visual Studio Team System Can't connection Project Portal
Hello~~~ I have installed TFS RTM Workgroup Edition. I'm using Windows Server 2003 R2 with Active Directory. After installation, I can open Documents, Reports at Team Explorer. And I can connection Windows SharePoint Services Site Administration using the link at Team Project Setting->Group Membership Dialog. But if I try to connect with Show Project Portal... , the browser request authentication. If I try to logon with TFSS ...Show All
.NET Development Asynchronous ADO.NET wont wait for WaitHandle
SQLconn = new SqlConnection(dbConnectionString); SQLconn.Open(); SQLcmd = new SqlCommand(SPName, SQLconn); SQLcmd.CommandType = CommandType.StoredProcedure; SQLcmd.CommandTimeout = 0; // And start executing IAsyncResult iaR = SQLcmd.BeginExecuteReader(); waitHandles[SQLEVENT] = iaR.AsyncWaitHandle; int index = WaitHandle.WaitAny(waitHandles); With this code the WaitAny returns imm ...Show All
SQL Server current users
Is there a limit on how many concurrent users that can use SQL Server 2005 Express Edition I haven't been able to find any facts about that Jens is correct, we do not limit the number of concurrent users in SQL Express. We have also removed the workload governer in SQL Express as well. Check out Euan Garden's Blog for a historical discussion on the workload governer in MSDE. http://blogs.msdn.com/euanga/a ...Show All
Visual Studio how to connect .rdlc to form
hi!!! All, While debuging the report I encountered the error mesage ;- The report definition for "Organisation.Reports.org.rdlc" has not been specified. Anybody help, Regards Tirthankar Ray Hello tirthankar, Could you post the code with which you connect the report to the form I also had some troubles with this. My solution was the following piece of code: ReportViewer1.LocalReport.ReportEmbeddedResourc ...Show All
Software Development for Windows Vista Passing parameters to child activities
Hi, when i did the following activities i got null reference exceptions, any kind of help is appreciated. Step1. my client code is initiating a sequential workflow with students array in the dictionary Step2. In seq work flow i have a child activity,and a while loop. what i intended to do is for each student do some operation on child activity. so for this i created a dependency property in childactivity called student. Step3. In th ...Show All
Visual Basic how can I creat a shortcut in clickonce ... ?
when I publish my project, ClickOnce Technology not support a shortcut .. so is there any way to create it how is this If I install the first setup and create a shortcut, then I need to delete it for the next update ot change the path each update, and if user remove the application .. how Can I remove the shortcut!! note: how can I create it ...Show All
Visual C# Threading in C#
Hello Everyone, I have a tab application, which initially I made single threaded....I added a dll which has a form. Now when I change to a tab method in that dll gets fired and form comes up, which makes everything else unresponsive.... Whats the best solution to implement thread to solve that problem.... Secondly, I tried doing something this way..... namespace something { public partial class Some : Form { public Some() ...Show All
Visual Basic graph sin curve with following curve? Help
I am using the following to graph a cardiod in polar coordinates but am trying to figure out how to graph a sin curve which is not in polar coordinates. How could I change the following code to make it graph in rectangular coordinates Private Sub DrawCardiod(ByVal g As Graphics) ' Drawing an Cardiod Dim x As Double Dim y As Double Dim old_x As Double Dim old_y As Double Dim r As Double Dim t As Double Dim dt As D ...Show All
Windows Forms Docking Windows in .NET
I would like the Visual Studio .NET like docking windows in my application. These docking windows has their own title bar, close button and also can be docked. Please help me to find out how to create these. Is there any controls out there  ...Show All
Visual Studio Tools for Office SELECT Statement against Excel file?
How can I run sql statement against excel file. I am using office 2003 and want to run retrieve information from a column in excel file. SELECT DISTINCT Code FROM Excel_File_name Is this possible Thanks You can do this with MS Query. See Data, Import External Data, New Database Query. With Advanced Filter you can get unique rows as well. ...Show All
Visual Basic Most elegant way to check if a network connection is available
Hi, I'm looking for the most elegant way to check if a connection is available to an ftp site. For example, I would lie to check the status of the connection before running a routine. Regards HerbiNZ I want to Continues Ping a Host My system has 2 Network card When i use the If My.Computer.Network.IsAvailable Then if my.computer.network.ping("your.ftp.server") then ...Show All
