Daniel.K's Q&A profile
SharePoint Products and Technologies Sharepoint design Question
Hi, We are going to implement Sharepoint 2007. Over the point we are thinking about having 2 Sharepoint 2007 server. One for intranet and internal stuff and the other for the website and extranet. My question is how much flexible sharepoint 2007 is in terms of design and customization. Can we do asp.net programming and AJAX with it or is that functionality disabled. I might sound a bit stupid but the last time I checked Sharepoint 2003 with asp and i was trying to use Includes, it didn't work. Also since sharepoint 2007 have great content management, would it be a good idea to use it for websites as we might have to develop about 3-4 websites. Last but not the least Can we change the design and give the main sites the feel like any ...Show All
Visual Basic Text file to database
i have a text file and want to transfer all the data into the database May i know what is the best and easy way to do it using what kind of class may help me to do so. I am using .net framwork 1.1,so is there any method that let me read the string word by word. and how can i split the TAB between the string. ...Show All
Visual C++ Multiple inheritance and function overloading
class A { public : int f() { cout<<"A::f()"; } }; class B { public : int f(int i) { cout<<"B::f(int)"; } }; class C : public A, public B { public : int g() { f(); } }; Why does the above program give following error error C2385: ambiguous access of 'f' in 'C' error C3861: 'f': identifier not found, even with argument-dependent lookup Where is the concept of function overloading and method signature go PS: The above program code compiles if you give A::f() inside function g() This is by no means strange. I've already explained to you how the compiler behaves, aswell as the reason for this behavior. To repeat myself; they figured methods of different ...Show All
Visual Basic help in opening new forms
how do i open a new window for a form Edit : I have acutally 7 forms. one of them is supposed to be open all the time. so how do i open a NEW and SEPERATE form I assume you mean how do you open a new form from an existing form Create a form called frmhello add a button to your form and on its click event put the following Dim frm as new frmhello Frm.showdialog ...Show All
Visual FoxPro Print Jobs Incomplete or Corrupt with Serial Printing
Hi to All! I'm using EPSON TMU-200 POS printer with only serial port available. OS = WinXP2. Print Jobs Incomplete or Corrupt if we print large chunk of data. Does anyone knows how to fix the problem Thanks in advance. Holden ...Show All
Software Development for Windows Vista audio capture device
hi, using WASAPI and MMDevice API's i can successfully enumerate the audio devices, but can enumerate the pins(e.g. Line In, phone, CD Audio ,etc) what interface should i use hr = pEnumerator->GetDefaultAudioEndpoint(eCapture, eConsole, &pDevice); eCapture - will set the master volume for recording device Replace eCapture with eRender ,,,, and try, this will set the volume of playback device ...Show All
Visual Studio Express Editions Can't Download!
I'm a total newbie to this forum so I'm sorry if this is in the wrong section. I've downloaded the Visual C++ setup from microsoft.com. I unpack the setup, wait for the install components to load, run through the setup (only selecting the graphical IDE to install), choose my install directory (left as default) and click install. It says that it is downloading .NET framework & the the IDE after that. I then get an error message saying that .NET framework cannot be downloaded. Yes, I am connected to the internet, & Yes, I have BITS & it's dependancies enabled. Can anyone help You could try downloading the complete vc++ express download as an iso file from: http://msdn.microsoft.com/vstudio/ex ...Show All
Visual Studio 2008 (Pre-release) this.Invoke dosn't work in 3.0 (Is Invoke Supported) Help Please
Ok,i'm woundering why the msdn articles say invoke is supported in .NET 3.0 Framework but dosnt work at all..Even when i put in System.Windows.Forms.dll as a Reference & use " using System.Windows.Forms; " in my .cs file.. Why it tells me Window1 does not contain a definition for 'Invoke" (Error 1 'iSCS.Window1' does not contain a definition for 'Invoke' ) Run my code in .NET 2.0 on a Form and it works fine flawless, than the msdn articles say Invoke is supported for .NET 3.0 Framework.So if System.Windows; can use "Invoke" someone tell me how cause its not working even with .NET 2.0 Form Reference.. Can i get some help on this issue public void ReceiveMessage( IAsyncResult ar) { try { ...Show All
Windows Forms how can i get a username or password from mydatabase??
Does anybody know how can i get data from my database. I construct login and register forms. In the registration there is no problem. Form add all information of user to the database. But In the login form, I have to make search entered username in my database or mydataset. I tried so much but i have nothing. pls help ..... I have tried this code. But it didn't work. I have debugged project, view.Count never changed. Is view.Count changing when the username and password found in the mydataset One more thing, I have to write theView.RowFilter = "[username]=' textbox1.Text' AND [pas ...Show All
Visual Studio Team System has anybody created a conversion tool that can import bug and test cases from Buzilla to VSTS?
we are using bugzilla and are evaluating using VSTS. all of our existing test cases and bugs are in bugzilla. has anybody created a conversion tool that can import bug and test cases from Buzilla to VSTS I've never heard of one existing, but I believe you can export your bugzilla bugs to XML and could easily write a program to read that and create corresponding work items in TFS. The TFS object model is pretty easy to use. Take a look at the Visual Studio SDK for examples and documentation. Thanks, -Doug ...Show All
Game Technologies: DirectX, XNA, XACT, etc. determining filepath of system assembly dll's
Since loading as assembly by partial name isn't available via the CF 2.0 (and therefore nor the 360), I need to load assemblies (both my own and system) for type inspection via file name (Assembly.LoadFrom method). Don't ask me why...you're not cleared for that. ;-) - For my own assemblies this is easy and have no problems there. - For system assemblies on Windows this is easy, I can either use the partial names, or I can load by file since I know where .Net installs the assemblies and which versions are active w/o too much trouble. - For system assemblies on the 360 it's not so easy. I need to be able to get a string that contains a fully qualified filespec (path + filename) to the assembly dll. I assume the dll names did not ...Show All
Visual Studio Team System Load Testing Production websites in different domains
G'day All, Is it possible for VS load agent to run web tests against a web application in a different domain i.e. production environment. I have used load runner before and would like to do something similar. If it is possible can you please post a link to some information on setting this up Kind Regards, Art Art, Do you mean a "different domain" as in going outside your network to hit the web site through a proxy server or do you mean just being able to switch the hostnames used in the web tests Josh ...Show All
Software Development for Windows Vista Correct way to create a State Machine
Hi I am trying to create a statefull booking service (state machine workflow exposed as webservice). It has the following states. Created, TicketSelected, Pay, Comfirmed. My question is twofold. First: The Created state is the Initial state and has an eventdriven activity that waits for a webserivce call to arrive. When this comes i need to do some actions and the wait for a new webservice call (SelectTicket) so I can go to the "TicketSelected" state. My question is. Where should i wait for this "SelectTicket" webservice call In the "Created" state og should i create a new state called "WaitForTicketSelect" I guess my problem is that my Created state would have to listen for two web service ca ...Show All
SQL Server Microsoft-phobic
I and my team have built a state-of-the-art web app using SQL Server 2005, Analysis Services, Reporting Services / Report Builder and Notification Services. Cool stuff! I have a prospective customer who for unknown reasons does not regard Microsoft and its technologies as first-class; they prefer Oracle / Java. Can anyone suggest a reading list White papers, independent comparative analyses, etc. Thanks to everyone in advance. Brian Agreed with Buck Woody, this happens quite often. You can either try to persuade them (most often a battle you have no chance of winning), give up entirely, or take advantage of the situation: Convince them that your app is as ...Show All
.NET Development Fastest way to call C++ code from C#?
I would like to write plug-ins for my application using C#. My plan was to make the C# objects COM visible and derive from my plug-in interface. I’ve been told that the transition to and from managed code is a very expensive operation and I should limit the transitions as much as possible. This makes sense but I would still like to do things in the most optimal way since there will be no way from the transitions to be eliminated. That said, what would be the optimal way to call C# code from C++ (COM) and C++ code from C# My current plan is to use COM visible interfaces to call C# code C++ and COM connection points to call C++ code from C#. Hi, When you compile with the CLR ...Show All
