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

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

ZopoStyle

Member List

newbieneedshelp
Wasim
baga
SAD1
Demokratizator
floydness
CliffW269333
dmb13
rottengeek
fbalas
Stephen Craig
learnerplates
Yahya
NET PR
Jakein2006
willajo
sohaibi
Johnnylightbulb
Alex Poon
Rocket horse
Only Title

ZopoStyle's Q&A profile

  • SQL Server Help: How to improve the speed of Sync.

    I have a table which has around 132000 rows with 24 columns. I use rda.pull download the data to PDA. For query these data, I must create a index on 5 character columns. The data download time is good enough, around 4 mins. But it takes 12mins to create the index. Please help to give me any idea on how to improve the whole synchroniztion speed. Thanks! If possible, make the colums shorter to decrease the index size. You could also consider createing the database file server side (including indexes), zipping and downloading, then unzipping on device. ...Show All

  • .NET Development RoleBased Windows Authentication in VisualStudio 2005

    How can we achive RoleBased Windows Authentication in VisualStudio 2005 without going for coding. Thanx If you mean "how do you set up database roles for Windows Authentication users in SqlServer without coding" -- use Sql Server Management Studio rather than VS. If you mean "how do you connect via Windows Authentication to access a login in Sql that has been set up to use roles" -- just specify integrated security in your connection string ("Data Source=xxxx; ...;integrated security=true;..."). ...Show All

  • .NET Development Webservice and Trace

    Hi, i'm trying to put a WebService to capture Trace events in Trace.axd. I've configured web.config to enable trace ( <trace enabled="true" requestLimit="100" pageOutput="false" traceMode="SortByTime" localOnly="false"/>). The Requests to the WebService shown in the main page of Trace.axd (/myWS/Trace.axd), but when viewing the details of that request, there is no "Trace Information" entry. Where is the Trace.WriteLine going to When doing the exact same configuration on a WebApplication, the "Trace Information" shows as expected. Thanks, Joel ...Show All

  • Windows Live Developer Forums AdCenter API Documentation

    Where i can find the new adcenter api documentation and domain model Thanks SEMuser So i need to have adcenter account($5) to view the documentation at at Microsoft Connect Just windows live account is not enough Sundar ...Show All

  • Visual Basic Vb2005 Express Froms Designer Does not show

    Suddenly without notice forms desinger in Vb2005 Express Does not open any more it gives me the send error to microsoft dialog then a message box containing the message more data is available when I press what deos this error reoprt contain link on the dialog it shows information like appname: vbexpress.exe appver 8.0.50727.363 appstamp: 4507e348 modname msvb7.dll modever: 8.0.50727.363 modstamp 4507fd0d How I can make the forms designer work again OK. Run the steps to get it to crash again. When it prompts you to send the data to Microsoft select "yes". Then open up the event log and look for an entry with the name "Watson" in the description. Copy that entry and post ...Show All

  • Visual Studio Tools for Office Save MailItem as MSG file

    Hi, How can I save the an Outlook.MailItem as .MSG file on Hard Disk Andy Ho I Have no problems saving the mail, but if the mail exists allready it throws a error, is there a way to check for this or default save over the old file. Regards Carsten ...Show All

  • Software Development for Windows Vista Tracking Schema reusability in Oracle

    Hi, I am working on a banking application and I am using Workflow Foundation for the development of a workflow subsystem. Our application is architected to work with any back end like SQL Server, Oracle etc. I used the tracking services and the supporting schema (tables and sp's) while developing on SQL Server. I was wondering whether the same tables and stored procedures can be ported into Oracle or not. If not, what is the way around. Do I write the schema myself. That would be a daunting task really. I am anticipated that the tables wont be a problem. Its the stored procedures that I am worried about. Any help would be appreciated. No, they can not be ported to Oracle and you will need to writ ...Show All

  • Windows Forms Panel with 3D PathBrush -> OutOfMemory Exception

    hallo, i try to create a custom usercontrol inherited from panel. I want to create it with a custom 3D effect. ColorStart and ColorStopp are two Properties. private void PaintGradient() { Point[] pt = new Point[]{new Point(0, 0), new Point(0, 100)}; PathGradientBrush pathBrush = new PathGradientBrush(pt); // -- -- -- >>> here comes the OutOfMemoryException pathBrush.CenterPoint = new PointF(0, 50); Color[] surrColors = new Color[2]; surrColors[0] = ColorStart; surrColors[1] = ColorStart; pathBrush.SurroundColors = surrColors; pathBrush.CenterColor = ColorStopp; Bitmap bmp = new Bitmap(this.Width, this.Height); Graphics g = Graphics. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Udder Assault XNA Warmup Submission

    When you get done with you game and sumbit it, crow about it here. A little over 24 hours left until the deadline and I'm so amazed I'm done, so much better than college Thanks to ZMan for his help, good luck all. I'll post the source code for my submission once the deadline hits. Bill It's done and submitted now. It's called Joe's Fuel Harvest Service. The game consists of mining planetoids for radioactive mineral to fuel the ships of Spacewar. Link to screenshots on the project page Youtube Link I can't wait to see all the entries. ...Show All

  • Visual Studio Express Editions Compile errors in string.h after upgrade to SP1

    My program worked perfectly before the upgrade. Now I get: ------ Build started: Project: hwa_dwa, Configuration: Debug Win32 ------ Compiling... configure.cpp c:\program files\microsoft visual studio 8\vc\include\string.h(136) : warning C4002: too many actual parameters for macro '__DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_1_EX' c:\program files\microsoft visual studio 8\vc\include\string.h(136) : error C2144: syntax error : 'char' should be preceded by ')' c:\program files\microsoft visual studio 8\vc\include\string.h(136) : error C2144: syntax error : 'char' should be preceded by ';' c:\program files\microsoft visual studio 8\vc\include\string.h(136) : warning C4091: '' : ignored on left of 'char' when no variable is ...Show All

  • SQL Server SQL Server 2005 table Partitioning

    Hi all, We are planning to use the SQL Server table paritioning in our project. There is a very large table storing 12 years of data. This table would have 25 million records with approx 2 million records per year. We are creating a index with below mentioned keys PK_ID (INT) Rec_CreateDate (Datetime) If we create horizontal partition based on the column Rec_CreateDate, I have the following questions. 1. Will this improve the performance of the DML queries on the table 2. Should I have the partitions on the same file groups or place in different file groups 3. Will the query performance improve only if I include the column Rec_CreateDate in the DML queries or the Pk_ID column itself is enough Also , ...Show All

  • Visual Studio MSB3108 ?

    What can cause a MSB3108 I have a custom build that just failed with the above error, until now it has worked nicely, but this time it failed and left the machine in a totally messed up state (I however was accessing the build machine via remote desktop) Sizevise we're talking perhaps 30 C# projects + 50 C++/CLI projects.. I'll try again and see what happens... EDIT: what's funny is that neither Google nor MSDN seems to know anything about such an error code... C:\Gsp\Build\Wrappers\Wrappers.sln : error MSB3108: Error executing the CreateTemporaryVCProject task. Insufficient system resources exist to complete the requested service.             Well, I thought you have that er ...Show All

  • Visual Basic Dicom, GDI32 and VBS

    Hello First of all, I would like to say that I'm almost a newbie in VB and in advanced programming. So I apologize for that. Problem n°1: on a dedicated workstation, on which it exists a medical image viewer and other macros, In a macro that I have to modify, I will have to measure the distance between 2 pixels and report this distance into an array. Despite, there is a tool for making this measure, Its own source code is incorporated into a dll that is protected so I can't use the code for incorporating it into this new macro. So I want to use the gdi32.lib functions into the modified macro. My question is: Are these functions incorporated into the gdi32.lib, compatibles with medical images file formats (as *.dcm, *.img) or ...Show All

  • Software Development for Windows Vista VMR9 saving output?

    Is there any way to have the output of the Video Mixing renderer be saved to a file Don > Is there any way to have the output of the Video Mixing renderer be > saved to a file Certainly not easily. The question has been asked numerous times in microsoft.public.win32.programmer.directx.video. Check Google Groups. -TMH ...Show All

  • SQL Server Open the link in new window

    When i giving a url passing some parameter..in Jump to Url of cell navigation properties.. In VS Studio its opening in new window ..but when deployed in server and its opening same browser while my requirement is to open in new window.. You need to set the LinkTarget deviceinfo to "_blank". This can be set using a url parameter or in the rsreportserver.config file. See this link for more information on setting the device info: http://msdn2.microsoft.com/en-us/library/ms155397.aspx This link has information on the device info settings for the html renderer. http://msdn2.microsoft.com/en-us/library/ms155395.aspx ...Show All

©2008 Software Development Network