Software Development Network Logo
  • Visual FoxPro
  • Visual C++
  • Game Technologies
  • Windows Vista
  • Visual C#
  • Visual Studio
  • SQL Server
  • Windows Forms
  • SharePoint Products
  • Smart Devicet
  • VS Team System
  • Audio and Video
  • Microsoft ISV
  • .NET Development
  • Visual Basic

Software Development Network >> cka11's Q&A profile

cka11

Member List

Olle Gustafsson
John Woodiwiss
Mitch5713
billb59
MaGeorge
Hendro Wijaya
KoryS
Wiindows
Black Dhalia
Tom Hartnett
QiSheng
rmgjohnes
learnerplates
WarehouseMan
Corey Furman
_hunter
D.A.V.E.
robinjam
eweaver
matsushita
Only Title

cka11's Q&A profile

  • Visual Studio Express Editions Connecting to a Remote SQL Server

    I have been going through the tutorial video (Absolute beginners one) and have started a program that edits an SQL database. However, I need this database on the net. I have got the database set up, and now all I need to know is how to connect to it. After looking on the internet, I have found out that the wizards do not let you connect to a remote SQL server, and so I have to code it in myself. However, the threads I have found I have not quite understood (I'm still fairly new to this). Could someone please either a) Give me an idiot's guide to doing this (then I should be sure of understanding it :D ) or point me in the direction of an existing one programmatically you pretty much change the data source ...Show All

  • Visual Studio Team System Windows Groups - TFS does not see new users until restart

    If using Windows groups, it appears that there is a bug in VSTS. TFS seems to query the Windows Security system once for a list of users belonging to each group. When you add a new user to the Windows Group, TFS doesn’t get the update – i.e. it’s out of date. The result is that you won’t be authenticated if you added yourself tp a Windows group after TFS has queried the Windows security system. To reproduce : Using a TFS Admin account, perform the following: Create a local Windows Security Group named ProjectAdmins To this group, add a user account e.g. User01 In TFS, under Project Settings, Group Membership, add the Windows Group, ProjectAdmins to one of your Team Project Administrator security groups. ...Show All

  • Gadgets Error using System.Network.Wireless

    Hello, I'm trying to develop a Winows Vista SideBar Gadget using the System.Network.Wireless Object. When I try to get the Wireless-connection-information the first time, everything works well, but when I try to read the data again, an error occurs. MyCode: function getwlan( ) { try { wlanip.innerHTML =System.Network.Wireless.address; wlandns.innerHTML = System.Network.Wireless.primaryDNSAddress; wlansec.innerHTML = System.Network.Wireless.secureConnection; wlansignal.innerHTML = System.Network.Wireless.signalStrength; wlanssid.innerHTML = System.Network.Wireless.ssid; } catch (e) { wlanssid.innerHTML = "Fehler"; } } As I said, when I call the getwlan-function again, wlanssid.innerHTML gets "Fehler" from ...Show All

  • Visual Studio Team System Warehouse problem -- different from others posted here

    I'm getting a different warehouse problem than any I've been able to find posted here. I'm getting the following error in the event log: Any ideas Event Type: Error Event Source: TFS Warehouse Event Category: None Event ID: 3000 Date: 10/19/2006 Time: 1:57:45 PM User: N/A Computer: POLK Description: TF53010: An unexpected condition has occurred in a Team Foundation component. The information contained here should be made available to your site administrative staff. Technical Information (for the administrative staff): Date (UTC): 10/19/2006 7:57:45 PM Machine: POLK Application Domain: /LM/W3SVC/3/Root/Warehouse-2-128057608762500000 Assembly: Microsoft.TeamFoundation.Warehouse, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f ...Show All

  • Visual Studio Express Editions Best/Simplest way to save user input for my program

    I have just about finished my first program. It consists of 4 forms, each form with a multitude of text boxes and buttons. Basically this program is going to keep track of some numbers for me by deducting 1/0.5 (depending on which button is pushed) from a total entered at the beginning of each week. Ive got all my buttons etc doing everything I want them to do but I've come across a major problem, when I close my program all the numbers disappear, I don't know how to save my user input (the numbers in my textboxes) I don't need to keep any history or anything of these numbers. I just need the program to remember the numbers that it is up to when i close it so that I can carry on deducting from them the next time I open the program. At the ...Show All

  • Visual C# Element 'ProjectProperty' is not a known element.

    I have this problem: Element 'ProjectProperty' is not a known element. This can occur if there is a compilation error in the Web site. Can anybody help me! Thank's! Hi Microsoft Office Sharepoint Server = Moss = Sharepoint 2007 you need to deploy your site to the _layouts directory.... and test it there Hope this helps ...Show All

  • SharePoint Products and Technologies Document Library WebPart and Folder Navigation

    Hi, I have created a Document Library and am using folders rather than columns for organization. This is largely because when users upload more than one document at a time they are not prompted to tag them with metatdata and then lose thier files amongst the existing documents. It is difficult for them to then find the documents and edit the properties after the fact. With this being said, it is more convenient for them to navigate to the appropriate folder and then upload the multiple documents. The one issue with navigating the folders is with the Document Library Web Part. I can't find a way for them to navigate up a directory. The "Up" button is no longer in the toolbar. The breadcrumbs don't work like they do if you ...Show All

  • Smart Device Development Bluetooth com port question

    In the documentation you can open a com port using CreateFile with both read and write access and you see this in a lot of sample code. Is it any advantage to use two separate com ports or perhaps use one com port and two file handles where the com port is being heavily used for read and write operations In my code I'm writing to a com port created with read and write access very frequently and the reads are done using polling on a separate thread (critical sections are used around the read and write calls). This forum is primarily monitored by Visual Studio for devices group. Please check this link for more appropriate forum for this type of queries. http://forums.microsoft.com/MSDN/Sho ...Show All

  • Software Development for Windows Vista Linker errors on WDK5600

    Could not find a place for WDK queries hence, posting here. Apologies if I'm at the wrong place. I'm working on a unidrv based printer driver. Until now we were building our DLLs with various versions of DDK. Recently we migrated to WDK5600 for vista support. After several code changes specific to vista, we were in a position to build the code. However we are currently facing a link problem. The WDK specifies that we should be linking only any one of LIBCMT,MSVCRT and NTDLL. We were until now, using LIBCMT with STL. When I link with MSVCRT (By specifying USE_MSVCRT=1 in the sources file), the code compiles and builds successfully. However, dlls built in this manner do not work on Windows2000/XP. I traced the problem to some unres ...Show All

  • SQL Server Loading images into SQL

    I have created and inserted successfully images into table but when I use Gird View, or other Control can’t see the photo. Any help. please Juvan Here is the query Create Table EmployeeProfile ( EmpId int, EmpName varchar(50) not null, EmpPhoto varbinary(max) not null ) Go User following to to insert image: Insert EmployeeProfile (EmpId, EmpName, EmpPhoto) Select 1001, 'Vadivel', BulkColumn from Openrowset( Bulk 'C:\Blue Lace 16.bmp', Single_Blob) as EmployeePicture hi, you did not post your code, so there's little to check , and perhaps a better place could be a forum about windows form or the like... anyway, here's a little trivial sample based on the following ...Show All

  • Visual Basic Problem with Custom Control [vs2005]

    First I hope I have the correct Forum, if not please send this to the correct forum Thank you! Ok now to the problem(s). I am creating a custom control. I am setting the control to inherit from System.Windows.Forms.Form. I want to add a custom property for datasource and datamember. The problem is that I cannot seem to get the "New" to show up on the datasource drop down when it is added. What am I missing Here is what I have so far: <Category( "Data" ), _ Browsable( True ), _ Description( "Indicates the source of data for the Control" ), _ RefreshProperties(RefreshProperties.Repaint), _ AttributeProvider( GetType (IListSource))> _ Public Property DataSource() As Object Ge ...Show All

  • .NET Development Activator.GetObject + New constructor with parameters

    Hi! I want to pass parameters to the New constructor of a class while using Activator.GetObject. How Thanks. ...Show All

  • .NET Development help with EventInfo please...

    I have to use reflection to get the methods added to an event. How do I do this Thanks in advance, Devin EventHandlerList is the underlying class type for an event. It will not let you access in the internal delegate list directly. Its Item property only lets you index the list with a key that's locked away in internal framework classes. ...Show All

  • Visual Studio Team System The problem during Getting local variable in a method

    Hello,everyone. Now ,I use the FxCop1.35 TO custom my Rule. Today while I custom my rule that get the local variable in a method, I found some problem. firstly,I custom a method: private string sendQQ(string qqNum) { return qqNum; } secondly,I custom my rule: public override ProblemCollection Check(Member member) { Method method = member as Method; if (method == null) { return null; } LocalList list = null; if (method.Instructions.Length > 0) { list = method.Instructions[0].Value as LocalList; } if (list != null) { for (int i = 0; i < list.Length; i++) { Local local = list ;//list is a local variable ...Show All

  • Customer Care Framework CCF Servers Verification Steps - GetAddresses problem

    I am verifying installation as described in Deployment Guide sec. 11.4. When trying to invoke http://CCFIIS/Microsoft.Ccf.Csr.WebServices.ContactCenter/AddressBook.asmx op=GetAddresses web service in Firefox I got this error: System.DirectoryServices.DirectoryServicesCOMException: A referral was returned from the server. at Microsoft.Ccf.Csr.WebServices.Providers.ContactCenter.LDAPAddressBookProvider.GetAddresses(String prefix, Int32 howMany) at Microsoft.Ccf.Csr.WebServices.AddressBook.GetAddresses(String prefix, Int32 howMany) When I try invoke the service in IE it ends with: The page cannot be displayed,...., HTTP 500 - Internal server error Documentation says that it should return some XML structure. Running next url http://cc ...Show All

©2008 Software Development Network