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

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

ZopoStyle

Member List

unsigned int
Santosh Kalkeri
csi_hugh
mjhoagland
bobchauvin
leok
project2n5e0o1
James Miles
Mark Guenault
hjeganathan
cindyluke
David Cowell
cookieCutter
Peter Laursen
Dietz
Adminanup
Ken_Bussell
Paarul
Rocket horse
MichaelD!
Only Title

ZopoStyle's Q&A profile

  • SharePoint Products and Technologies Task assignement

    Hello: I want to assign a task to a person, but I dont have his name in the 'Assigned to' box. He has permission to access the site where I want to assign the task. How do I add this person to the list Can I have all the persons who have access to my portal in that menu Regards the drop down with people names is populated from the user list for that site (accessible from site settings). note that this list does not list all users with permissions to the site - just users who you added one by one (not part of a group) and users who visited the site. I hope that makes sense. ...Show All

  • Software Development for Windows Vista Cannot insert activities from the toolbox if CanModifyActivities=False

    I would like to have a workflow initialized with two activities in it and also be able to drag additional activities from the toolbox into the workflow. I have written the code shown below to achieve this goal. However, after setting CanModifyActivities to false, I cannot drag activities from the toolbox into the designer. The designer does not accept the activities anymore and does not throw an exception. How can I have a workflow initialized with 2 activities in it and still be able to add additional activities by dragging items from the toolbox (which seems not to be possible, if CanModifyActivities has been set to false) [ Designer ( typeof ( WorkflowActivityDesigner ), typeof ( IRootDesigner ...Show All

  • SQL Server Report export to Excel

    Hi, I need to export various reports created using SQL Server 2005 Reporting Services to ONE Excel workbook (with multiple work sheets - tabs - one for each report). Is there an option in Reporting services that can allow me that Thanks. Hi, In my report, I have 3 rows in the details section. I need to show all the 3 rows into a single line when it is exported to excel. Is this possible , please help me. ...Show All

  • Visual Basic visual studio 2005 vb.net lesson concatenation

    Greetings, I get the following error message for the lesson on concatenation: Error 1 '>' expected. Here is the code: I think I typed it exactly as it is in the lesson: Public Class Form1 Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load Dim aString As String = "Concatenating" Dim bString As String = "Without" Dim cString As String = "With" Dim dString As String = "Spaces" ' Displays "Concatenating Without Spaces". MsgBox(aString & bString & dString) <br /><span space= "preserve" >...</span<br /> ' ...Show All

  • Visual Studio Team System More Warehouse problems

    After a TFS rebuild I am no longer able to process the OLAP cube.  Initially TFS (and SQL) was built on a server with Australian regional settings.  However the rebuild was done on a server that had default US regional settings.  I have since changed the default collation for the database server back to the Australian collation (to fix errors in comparing and merging files).  The warehouse is still not working though.  It seems like its something to do with date formats, although I am not 100% sure.  Aus date format is the same as British (ie DD/MM/YYYY), eg today is 06/04/2006.  The value of TfsWarehouse.Today.Date was "4/6/2006", we tried changing it to "6/4/2006" but it still returned the sam ...Show All

  • Visual Studio Does VS2005 have a built in tool to make installers?

    Hi, Sorry I'm not sure if this is the correct sub-forum to post to. What I would like to know is does VS2005 have a built in tool to make an installer for my application When you open the new project wizard you should see a Setup section where you can add setup projects for your winform or aspnet apps. -- SvenC ...Show All

  • SQL Server SSIS 'Execute Process task' doen't open window

    Hi I couldn't find an 'SQL Server Agent' Forum , so I'm posting this here...sorry. I'm using a job to run a batch file with several robocopy commands in it. The step in the scheduled job runs a SSIS package saved in the Server Package Store. The SSIS package uses an 'Execute Process Task' control flow item. The 'Execute Process task' simply calls and execute the batch file. (WindowStyle property = Maximized) The package/job runs fine in both Visual Studio and in Management Studio. However when run from the latter (SQL Management Studio Job) the command prompt window (dos screen) doesn't open so I can't tell at what stage the batch file is in at any given time. How can I get the window to open By the way the window does open if I ...Show All

  • .NET Development Conference app

    I want to create a conference software. I'm new to C#, I've worked until now with Visual Basic 6, Java and C++. The basic modules are: - video module - audio module For the video part I managed to sort it out... take pictures at every 10-20 ms with the webcam, save them and then send the files to the other end. Now the next thing... how can I send audio streams between 2 computers I'm thinking at the following algorithm: record 10 seconds then save it as a wav file and send it to the other end, but I think this is a rudimentary method and also I want to create the conference in real time . Can you suggest me something I just need a little push meaning some links that I could study. Thanks in advance. ...Show All

  • Visual Studio Team System Nice tool but small annoyances

    Almost beats Subversion but merging tool needs one small detail - when you have two upper windows with original and new source code and you scroll one of the windows left or down - Subversion automatically scrolls the another. That's very useful. If TFS team will fix this small thing - Team System will tie again vs Subversion... Thanks for the feedback. You might try a 3rd-party merge tool: http://blogs.msdn.com/jmanning/articles/535573.aspx ...Show All

  • SQL Server Preserving SQL DB when applying application update

    Hi, Apologies if this question is similar to one posted under "Click once deployment" but I got no replies and I REALLY need to know the answer to my problem! I am using VB on VS 2005 Express and SQL Server 2005 Express. My application is nearing the stage where I can start to use real data (from the end user) for testing purposes. Once I am as happy as I can be, I will install the application on the user's machine and he will use the application for a few weeks, with real data, before giving me a list of problems/suggested improvements etc. I will then need to make the changes and re-install the application on his machine without losing all the changes he has made to the DB in those weeks. Presumably, there must b ...Show All

  • Visual C++ Matrices of constant data

    Why is it that the compiler can convert from 'int *' to 'const int *', but not from 'int **' to 'const int **' An example is included. Any thoughts would be appreciated. #include <stdio.h> int main() { int A[] = {0, 1}; A[0] = 2; const int * X = A; // ok printf("%d\n",X[0]); int B[] = {1, 2}; int C[] = {3, 4}; int * D[] = {B, C}; D[0][0] = 5; const int ** Y = D; // not ok //int ** Y = D; // ok printf("%d\n",Y[0][0]); return 0; } Mike Danes wrote: int A[]; is actually int const* A; Whether or not the [] form is used for the D pointer makes no difference in this case, the standard forbids the conversion either way. ...Show All

  • Visual Studio 2008 (Pre-release) Initialize binding in a style?

    Hi, Is it possible to set a binding in a style Ie: A.xaml, B.xaml, Styles.xaml. Styles.xaml contains the style and A and B applies the style to my custom button type. My custom button has a property OrderItem which is the data source of the button template <Kiosk:SaleItemKioskButton x:Name="SpriteButton" SaleItemId="2248" Style="{DynamicResource SaleItemKioskButtonStyle}" Content="{Binding OrderItem, ElementName=SpriteButton, Mode=Default}" ContentTemplate="{DynamicResource OrderItemTemplate}" IsEnabled="{Binding OrderItem.Available, ElementName=SpriteButton, Mode=Default}"/> What I want to do is move the Content, ContentTemplate and IsEnabled pr ...Show All

  • Visual Studio Express Editions how to: bind a single control to multiple datasources

    hi, im really new to programming and i was wondering if there's someone out there who's kind enough to teach me how to bind a single control (ex. a textbox) to multiple datasource's (ex. two or more table's). thanks a lot.. sorry, but i do a lot of bad programming habbit, like relying mostly on intelisense to do the coding, well please correct me if im wrong (for sure i am), what im tying to do is something like this: example1.text = datasource example2.text=example1.text when i assign something like that, the value doesnt appear.. another help please ...Show All

  • SQL Server Fastest way to copy tables and their indexes between servers?

    The DTS Task Copy Server Objects is PAINFULLY slow. The Copy Table Wizard is fast but generates an unmanagable DTS and does not bring over the indexes. Any tips or tricks to copy tables, data and indexes and a reasonable speed Thanks, Carl Without fully understanding the specifics but going by what you've done so far, one other option would be to script the database objects to file, run the generated scripts on the second server then use the BCP utility BCP.EXE (bulk copy program) to copy the data over. See http://msdn2.microsoft.com/en-us/library/aa337544.aspx for more information on how to use the BCP utility. Regards, Uwa. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Dream Build Play today?

    Well it's just gone 9am UK time and as it's the last day of January I assume that the Dream Build Play website will go live today I can't wait to see more details. Of course, I keep working on my game even if the contest didn't start yet, but I'm awfully curious about everything. ...Show All

©2008 Software Development Network