sabo's Q&A profile
Visual Studio Working with MS-SCC API implementation and MS-Access
Hi All, We have implemented MS-SCC API 1.3. I am testing this with all Microsoft IDEs VC6, VB6, VS03, VS05, MS-Accesss etc. While working with MS-Access, I am able to add an access database (containing different type of objects - tables, queries, forms, macros, modules etc) to the SCM. But when I try to create database from by using our source repository for other user, only tables get added to the database, not other objects like forms, modules. The other user has to execute "Get Latest Version" command for by selecting "All" from "Object Type", to populate other objects. While creating database, SccPopulateList() function get called. In this function we are checking out all object files in local file system ...Show All
Windows Live Developer Forums WISH LIST FOR THE NEXT RELEASE
Lets start a wish list for the features we want for the next release. My numba one wish is: I want the Altitude of the center of the map in the view object of the .onchangeview Event. The ability to filter Road Types or assign preferences that was made available in the latest Mappoint Web Service release . ...Show All
SQL Server Add space between matrix row group
I have a 2 row groups in a matrix and I need to add some space between the top one so that all the columns don't run together. Is there a way to do this So, you are wanting something like a 'spacer' column What if you add another blank column to you report Right click your textbox below the 'Advanced' column and select 'Add Column', then just leave it blank. Jarret ...Show All
Visual Studio Loop in MSBuild? Or how to launch MSBuild task from another?
I need to loop some standard MSBuild tasks: GenerateResources and AL. In MSBuild there are no possibilities to do it, or I am wrong So I decide to implement custom task which will launch these task, but when I done it, there are errors during launching tasks from my custom: "Task attempted to log before it was initialized ..." It seems that Log wasn't initialized but how to do it ... As I understand it, this is the problem you want to solve - You have a directory containing a set of files (resource files in Root\App_LocalResources\*.resx) For each .resx file (say X.resx) in the directory, you want to a. Create a directory called Root\bin\X b. Convert X.resx -> X.resources -&g ...Show All
Visual C++ windows forms X win32 console application
Hi there, i'm a little new to VC++ and i'm having some problems... I have a program i made to change my desktop through a combination of keys. I used the win32 console application project in the visual studio 2005. Now i'm trying to make a GUI for the program through the windows forms appplication project from VS2005, but i'm getting some strange errors. The codes from the 2 versions are below: This one is from the win32 application: #include <comdef.h> #include <stdlib.h> #include <stdio.h> #include <time.h> #include <string.h> #include <windows.h> #include <wininet.h> #include <shlobj.h> #include <winuser.h> struct COM_IN ...Show All
Visual Studio 2008 (Pre-release) Why WCF Serliazes messages in a diffrent way than specified in the Service Contract?
I have encoutered this problem because of the way WCF serializes messages. (WCF does not follow what the Service Contract says!!!) Hence I get an error when I do this (from my IClientMessageInspector. AfterReceiveReply): MarketValueOfPortfolioResponse objMsg = msg.GetBody< MarketValueOfPortfolioResponse >(); This is because WCF wraps the message Elements with <<OperationName>>Response (e.g., GetMarketValueOfPortfolioResponse) and <<OperationName>>Result (e.g., GetMarketValueOfPortfolioResult). Could you please advise me on how to get WCF to NOT to add the above and instead use the MessageName (e.g., MarketValueOfPortfolioResponse ) specified in my Data Contract. My Da ...Show All
Windows Forms Spalsh Screen
Hey, In in properties of a project how do you select what form you want to be a splash screen I used the help in the compiler but I could not get an answer that worked... Thanks :) And you guys were right, ok so I read the steps you agve me again and here is the code: private void Splashscreen1_Shown( object sender, EventArgs e) { timerSplash.Enabled = true ; } private void timerSplash_Tick( object sender, EventArgs e) { i = i + 1; if (i == 50) { timerSplash.Enabled = false ; DestroyHandle(); Form1 main = new Form1 (); DialogResult result = main.ShowDialog(); main = null ; } } } it worked, thanks :) ...Show All
SQL Server Creating a local SQL Server Compact Edition DB
Hi All ... I'm setting up replication for the 1st time following the steps in the Books Online to get it up and running: ms-help://MS.SSCE.v31.EN/ssmmain3/html/5a82aa7a-41a3-4246-a01a-2b1e4b2fdfe9.htm. Anyhow, I get down to the section labeled - Create a new SQL Server Compact Edition database and am having a problem. I open SQL Server Management Studio as instructed. I click Connect and then am supposed to select SQL Server Compact Edition - yet can't find that option. And, yes, I've installed Compact Edition on my development laptop. So, how do I get this option so that I can create the local DB for Compact Edition and continue development UPDATE: Ok, duh moment, I have SQL Server Management Studio ...Show All
Visual Studio Express Editions socket accept question
Hi, I have a problem with the accept method of the socket class, if I place a socket in a listening state and accept a connection, the returned new socket has the same localendpoint as the listening socket. Surely this is a bit silly Doesnt this tie up the listener And if this is the case why have a new socket at all Another thing, is there any way to determine the remoteendpoint of the connecting machine prior to accepting the connection I mean, once you call accept the computer is connected, right I'd like to be able to refuse the connection based on the remoteendpoint without ever accepting the connection in the first place. And who said the socket class was better than winsock We never had any of these issues before. PsychU ...Show All
Visual Studio Express Editions Beginners Guide
Hey everyone, well i have decided to get back into programming for fun and decided to try my hand at vb.net. the problem is i havent done any sort of coding since q-basic. you may commence uncontrollable fits of laughter. ok so what i am looking for is a beginners guide. not just the beginners videos, but something that i can actually print and read. i am a book learner. i do plan on using the videos and online tutorials, but i like to have a hard copy of something that i can refer to. are there any free guides i might be able to get or can someone recommend a good book to help get me started thanks! A simple search on the keyword Learning in both this forum and the VB Forums will reveal many interestin ...Show All
Visual Basic Please help me about using Flash as background of a form!
Hi everybody, I have a MDIForm named MainForm. How can I embed a Flash as background of this form instead of using a static image I try to embed Flash by dragging & dropping Shockwave Flash Object into the form. I set the property of this object like Dock = Fill. The problem is when I call any childform of my MainForm, I can't see this childform because it is hidden by the Flash. Please help me. It's very urgent. Thanks. Can you guide me more clearly I embeded the Flash to my MainForm by using Shockware Flash Object , it worked well. But when I called any childform, the childform is hidden by the Flash. This problem is that I don't know how to put the Flash behind all of childforms . ...Show All
SQL Server Identify ANSI/SQL-92 non-compliant code
How can we scan our code and identify the ANSI/SQL-92 non-compliant code Is there a tool/utility to do so I have already tried " SQL Best Practice Analyzer " and it seems it does not cover everything. Thanks/ PKGuj wrote: Here is an example of ordering by non-integer constants : -- FAILs in 90, but is ignored in 80 mode SELECT colA , colB , colC FROM table ORDER BY 'b' -- Non-integer constant -- All three of the following will order by the second column in the list, and are commonly used in SQL Server 2000 SELECT colA , colB , colC FROM table ORDER BY col2 SELECT colA , colB , colC FROM table ORDER B ...Show All
.NET Development How to publish website created using Visual Web Developer 2005 Express Edition
Hi Everybody! I created my website using Visual Web developer 2005 Express Edition on my local machine.My database stored on Sql Server 2000 and My web site stored on another Server. Now i like to publish my website.I also have one server having IIS. Any one can please help me how to publish my website for intranet purpose.This web site is used by internal staff within one building. Thank you Kirti email:kirtimistry2001@hotmail.com Hi, I am also having problem in deploying the asp web application. I had follow your step to copy the folder to wwwroot. But can you be more specific on how to locate my folder in IIS. I am not sure whether should I create a virtual directory, ...Show All
Visual Basic How to save active page displayed through I.E.6 under text page.
Hello, I would like , through Visual Basic 2005 command, save under c:\test.txt an active sheet displayed on the screen through I.E.6 browser. I am working Windows XP . Any support will be welcome ! This code works to append the html to the text file Private Sub btnSave_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click 'MessageBox.Show(GetPageHTML(Me.WebBrowser1.Url.ToString)) My .Computer.FileSystem.WriteAllText( "C:\HTMLDownload.txt" , _ GetPageHTML( Me .WebBrowser1.Url.ToString), True ) End Sub This code will put the download in a new file: Private Sub btnSave ...Show All
SQL Server sql server databse creation
hi i dont know it is right forum to ask this question or not. had generated the sql script to create the databse.i had copied the query from there but i gives the static path of mdf files (in query), present on sql server folder without that it does not work. i m using this query to in ExecuteNoQuery method. problem is how to know that in which drive sql server is installed, and get folder location of installed sql server is installed or get the full path of installed sql server. or any other way to creat database through sql script. Actually if you don’t want to give any path information to the create database command, you can just to a: CREATE DATABASE Nameofthedatabase HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de ...Show All
