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

Software Development Network >> Sandor Fabian's Q&A profile

Sandor Fabian

Member List

Kimo_SPIDynamics
JDAnthony
Dnieto23
ejn76
refaeldakar
&#59;lkj&#59;lk
.NET Developer
ejstembler
AussieNoobie
TommyGL
bkustel
00Negative
Smitha R
Bill Reiss
Arkette
Ralf Hedler
Larkin Y
TSS - Daniel
Igor24
Oscarfh
Only Title

Sandor Fabian's Q&A profile

  • Windows Forms What does Ozzie think?

    It seems to me that there is a lot more demand for ASP.NET developers than Windows Forms .NET developers. I believe that any user would prefer to use a desktop application over a browser application when given the choice. I have searched the web for articles which might hint what technical direction Ray Ozzie will take Microsoft. I would like to know how much he supports Smart Clients, ClickOnce, and Office Integration on the desktop, as compared to ASP.NET, AJAX and Atlas. If anyone can shed light on this, please let me know. Thanks, Bren James, I agree with everything you say. I am developing using .NET in both desktop and browser applications. I'm just curious about the direction Ozzie i ...Show All

  • Visual Studio Express Editions Project creation issues

    Hi, I recent ly downloaded Vusal C++ Express. I have gone through the tutorials but I am really struggling with some simple user issues. When I start a new poject I have been following the steps..1. File, New, then click Project. 2. In the Project Types area, click Win32, then Win32 Console Application. 3. Type in a name for the project (accepting default name and location for the solution). 4. Click Next. 5. Select the Precompiled Header and click Finish. When doing this I get the following error message "Object does not support this property or method". I have also tried to build a project with selecting Empy Project and not precomiled error. I have put in my source code and have built my project. My build fails for the follo ...Show All

  • SQL Server calling web service in stored procedure (SQL 2005)

    I need to create a stored procedure (SQL 2005). I did it in C# (Visual Studio). The .dll file (inside) uses web services of Project Server 2007 (I just need to log on, create a project and log out). I prepared 2 files (exactly the same code): dll an exe. the .exe works fine. the problem is with .dll file (stored procedure in SQL)... by the way: I created serialization file with sgen tool. the problems start when I am trying to register these 2 .dlls in SQL server. I can do that in unsafe mode only. when I am trying to register them in externall access (normal dll) and safe mode (serialization .dll) I am getting errors: CREATE ASSEMBLY failed because method "add_QueueCheckInProjectCompleted" on type "ConsoleApplicati ...Show All

  • Customer Care Framework CCF WorkFlow

    Hi all, I have this problem: when i open Agent Desktop, the first workflow in the workflow list starts automatically. How can i stop this process Is there an option to set somewhere or should i make a change in the code Thanks all, Gianfra The AgentDesktop code provided with CCF is provided as Sample code… It is preconfigured with some default behaviors.. To stop it from AutoLaunching the first workflow, in Desktop.cs Locate and comment this line: this .workFlowControl.StartWorkflowByIndex(0); Matt B - MS ...Show All

  • Visual C# Printing & Exporting

    I don't mind admitting I don't know (lol) so here goes. We have placed an image on a form and have overlayed it with controls like texboxed, labels, checkboxes. Now we need to print these "form" and also need to save it to a .pdf. Any ideas would be greatly appreciated. Thank you, Charlie ...Show All

  • Architecture Migration of Websphere (any other EAI Application) to BizTalk

    How to Migrate an EAI applcation, from Webshere to Biztalk 2006 1) Strategy 2) BizTalk Technology/Component Mappings with source EAI Tools. 3) Automation/Manual Migration ratio. 3) Benchmarking etc.... Thanks for your reply, What you are saying is right. This is a kind of 100% migration from Non-Microsoft to Microsoft technologies. Only IBM MQSeries will be used for messaging. Because it has more scalability/availability as compare to MSMQ. Migration Approach/Road map ===================== STEP 1: we will have first find the complete list of artifacts in Websphere. STEP 2: we will have check the artifacts which can be migrated directly, like those which are based on industry standards as you said, like XML Schemas, Or ...Show All

  • Visual Basic datagrid

    how to print the contents of a data grid in vb 6.0... Hi, Try your question in a VB6 forum try the links mentioned here.>> http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=478161&SiteID=1 or >> http://www.programmersheaven.com/c/MsgBoard/wwwboard.asp Board=14&src=20&Setting = Regards, S_DS ...Show All

  • Visual FoxPro Please help?

    How do I create a print button in Form of VFP9 that will print only the current record Will appreciate and thanks in advance... First, create a report that presents the data from the record in the format you want. Then, add a button to your form and put code in it something like this: REPORT FORM <name of your report> NEXT 1 TO PRINT Tamar ...Show All

  • Visual C++ change letter in an array

    How do you change an letter in an array for example string[10] = hello; how do you change 'h' in array to a 'b' Some optimization :) you can directly write as str[0] ='a'; ...Show All

  • Internet Explorer Development Zones

    Now that I've upgraded to IE 7.0 mapped drives and uncs run under the internet zone. Why ...Show All

  • .NET Development Web Service Deployment Troubles

    I have build a Web service and some supporting Dll's and tested them on my local machine. All is well when i do this. When I deploy to the server, nothing will work. I did Dependency Walker on it an 3 dlls were missing. msvcm80d.dll, msvcp80d.dll, and msvcr80d.dll. I have tried moving these files and such and have been reading about this manifest files stuff on the net. I have tried including and excluding manifest file and i can't get the service to work for anything. It appears that there are some problems with this manifest stuff. Can anyone offer some advice on where i should look for solutions Thanks I have now narrowed the problem to what I think is ASP.NET permissions. I am now getting th ...Show All

  • Smart Device Development launch picturebox

    How do i create a vb program so that when executed, there is no form window but only a picturebox shown Using the designer set the form properties as follows: Menu property to "None" and WindowState to "Maximized" This will remove the menu and task bar. Manav ...Show All

  • .NET Development Accessing/Editing SQL Server Database using VB.net program via TCP/IP

    Hey everyone, I have a SQL Server 2005 database up and running on a server and I have it set so that there can be remote connections using Windows Authentication (we share the server with some other accounts so this is the most convenient way for us to do it) and I also made sure that our XP Firewall allows connections to SQL Server. We have created  program using VB.net (Visual Studio 2005) that reads/writes/and deletes items from our database on the local machine.  What we want to do is now make it so that we can run the VB program from other computers around our building and remotely connect to the database via TCP/IP using Windows Authentication. I have tried altering our data source that writes to the database locally ...Show All

  • Visual Studio Team System How I can find what event subscriptions I have in the TFS?

    And which subscriptions I have to have in order to make TFS function properly I played with EventService.asmx and I believe that I could accidentaly unsubscribe from event with id=1. This Web Service is so poorly developed that it even doesn't let you know the results of operation - maybe nothing happened, but who knows Thank you for response! Yep - I will use bissubscribe. But looks like the order is different - I have this subscription as #4. Let me list my remaining subscriptions from ##2-4 and you will let me know which one I am missing: #2 DataChangedEvent http://<server>:8080/WorkItemTracking/V1.0/SyncEventsListener.asmx #3 ProjectCreatedEvent http://<server>:8080/Warehouse/ ...Show All

  • Visual Studio Express Editions HELP: This used to be working..

    id like to ask help about the code below, it used to be working, but now i get to print only the first row.. will somebody help get this working again please.. While RowItem < Me .dgvOrderDetails.RowCount While ColItem <= 3 str = Me .dgvOrderDetails.Item(ColItem, RowItem).FormattedValue e.Graphics.DrawString(str, pFont, Brushes.Black, x, y) ColItem = ColItem + 1 If ColItem = 1 Then x = x + 70 ElseIf ColItem = 2 Then x = x + 310 Else x = x + 90 End If End While x = 80 RowItem = RowItem + 1 y = y + pFont.Height + 5 End While   While RowItem < Me .dgvOrderDetails.RowCount ColItem = 0 While ColItem <= 3 ColIte ...Show All

©2008 Software Development Network