Parakooper's Q&A profile
Visual Studio Tools for Office Word Publish: The Web server does not appear to have the FrontPage server extensions installed
1- A word Project 2- A Web Project (Visual Studio Web Server not IIS) 3- Publish the word project to the VSWeb (it is running, you know, it can be tuned on and off). Unable to publish, error: Word Publish: The Web server does not appear to have the FrontPage server extensions installed That is a typical none sense that can be only done by a Microsoft developer, usually it is like that: 1- ...Show All
.NET Development Will AnyCPU cause binaries to run as 64-bit on x64 machine
I used VS2005 professional to compile 18 .Net assemblies using the AnyCPU platform setting in configuration manager. I also have a startup executable that calls into one of the GAC libraries to start/run the program. I compiled both the program and all assemblies on at 32 bit Windows 2000 OS using the "AnyCPU" platform setting On the 64-bit computer running XP-Professional(64)... All assemblies were successfully loaded a ...Show All
Visual Studio 2008 (Pre-release) XamlBrowserPad
A basic Xaml editor (like XamlPad from the WinFX SDK) running in the browser. http://www.valil.com/XamlBrowserPad/XamlBrowserPad.xbap ...Show All
Visual C++ Is Controlling Function thread-safe?
Hello VC++ forum, I am using AfxBeginThread in a multi-thread application and wondering whether its controlling function is thread-safe. Here is a sample code: //=============================== class c { public: c(int nType); startthread(); int m_nType; }; c::startthread() { CWinThread *pThread = AfxBeginThread(foo,this,..);} UINT foo(LPVOID) { //The controlling function ... //Check c object's type to perform acc ...Show All
Windows Forms PictureBox ImageChange Event???!!
Hi All, I was wondering if there is an event I can use other than 'Paint' to capture when a picturebox has had a image loaded or changed any help appreciated. Carl. Adding an image causes Invalidate() to be called.Hence,call the InValidated event to get the change in image. Hope this helps ...Show All
.NET Development Copy a whole table from mssql to ms access
How can I copy a table(structure and data) from mssql to ms access You should be able to create a SQL script by right clicking on the table in Enterprise Manager and selecting the Generate SQL Script option. That will give you a script for the actual table structure. I have not done this from MSSQL to Access, so you might need to tweak the datatypes and other things in the actual script to get it working correc ...Show All
SQL Server Soundex support for foreign languages
Hi We have an application we are developing that will run worldwide. When we are searching data for peoples names I would like to use Soundex but I am not sure it works effectivly for any language other than English. Does anyone know if it is effective in Dutch, German, French etc http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=396726&SiteID=1 HTH ...Show All
Windows Forms Visual Studio Bug? Problems with TabControl
Here are the steps to reproduce my problem: 1. Create Tab1 2. Create Tab2 3. Place a bunch of controls 4. Add data bindings for two DataGridViews (one on Tab1, one on Tab2) == everything fine so far == 4. Add a new tab (Tab3 -- no controls) == still fine == 5. Move Tab3 to beginning (new order: Tab3, Tab1, Tab2) == stops working! == When I open the form, I get an error dialog . Then, when I hit OK, the form is broken. 6. Remove Tab ...Show All
SQL Server How to restore SQL 2000 DB to SQL 2005
Hi, All I am trying to restore SQL 2000 DB into SQL 2005 Database. I backup the database from SQL 2000. From Management Suit, I try to restore database but I can not see network drive from there even though SQL serveris running under network account. I could see network drive from SQL 2000 or at least I can type path to find backup file. However I can not do this.. My Q is: 1. How can I restore this SQL 2000 db to SQL 2005 using network path 2. ...Show All
Software Development for Windows Vista Class not registered error
I'm trying to get an enumeration of various devices using the Multimedia Device API on Windows XP. But when I try to create a MMDeviceEnumerator, CoCreateInstance fails with a "class not registered" result. I'd guess that I missed a step in setting all this up, but I have no idea what that step is. If anyone could point me in the right direction, I'd greatly appreciate it. Hi, I'm trying to d ...Show All
Microsoft ISV Community Center Forums How do you test a user's input for alphabets?
Hello programming gurus! Is there anyway to test if a user's input contains only alphabets Thank you! Just thought I'd share that I ended up using OR instead of AND. Private Sub TextBox1_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger) If KeyAscii < 65 OR KeyAscii > 90 Then 'invalid input, set to zero (ignore) KeyAscii = 0 End If End Sub ...Show All
Windows Forms error when client using clickonce install
When a client try to install an application by clickonce it receive this error:"Unable to install or Run Application. The Application Requires that assembly stdole Version 7.0.3300.0 be installed in the Global Assembly Cache (GAC) first. Please contact your system administrator" Can I do thank's a lot! I am having the same problem. VERY FRUSTRATING! Unable to install or run the application. The application requ ...Show All
.NET Development List files on ftp server
Hello all, i have created an ftp client in C# using Wininet and i am able to download upload files from and to my ftp server, what i would like is to have the list of files and directories on the ftp server using wininet. any help would be great. With WinInet you'll have to PInvoke FtpFindFirstFile and InternetFindNextFile . Just FYI: there is an FtpWebRequest class in 2.0 that can make some operations easier, but doesn't actually ...Show All
SQL Server Creating report based on parent-child dimension
Hi I have a problem to create a report based on a parent child-dimension When I go to reporting services, and I create a new report based on a cube, I drag my parent-child dimension to my data-layout. Then the dimension is immediatily ragged down. Anyone an idea to solve this. Does anyone have an example to create a report based on a parent-child dimensions Thx ...Show All
SQL Server Execution of Package failed
I am trying to design package which would copy all tables and stored procedures from one server to another. It used to be simple task in SQL 2000, there was wizard. However the new wizard does not work... I wrote SSIS package, but when I execute I get the following error: "Can not apply value null to property Login..." Any idea It seems to me that this new SQl2005 is not that simple to use like 2000. 2000 was a great product. I am consider ...Show All
