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

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

Zadoras

Member List

T.Beal
Maaloul
anydobbo
Zulbaric
smk_k
MNDANG
Elad_23
Mathew1972
Pat1111
roadresident
Teo Lachev
darknessangel
Ryan Schwartz
Surfsune
furjaw
Mukhtar
Bill_C
waff
GrayMatter Software
Damir Dobric
Only Title

Zadoras's Q&A profile

  • Visual Studio 2008 (Pre-release) Porting WDDM to Xp

    Found on some website that mentioned Microsoft will port vista display foundation that take advantage of dx9 graphic card to win xp and win server 2003 which will eliminate the tear off effect when windows is dragged across the desktop. Is it true It should be an optional upgrade add-on... Any ideas or suggestions Thanks for reply. All the sources I've read say that WDDM will be for Vista only. The Driver Model is deep down in the core of Windows and making such a drastic change to a central part of an existing operating system would require a MASSIVE effort on Microsoft's part including making sure that existing apps run properly when using it. The only updates we'll see to XP are new high l ...Show All

  • SQL Server Prgramming for SQL Server 2005

    Folks, I'm new to sql server and want to know 1) what are the possible ways to program ( I mean do we have any frontend tools OR where do we write program which eventually talks to sql database)so we can do ETL operation for data of sql server DB. 2) How to learn that programing ( meaning what are the resources ) 3) I'm new to database concepts as i'm Java Programer - what basic things I must know in order to design sql database all above que is to support my current new job, PLS advise asap. thanks. Good Info but can you tell me little more specificaly that if i don't use any .Net langauge to write small program is there anyh tool in sql server 2005 which provides me development ...Show All

  • SharePoint Products and Technologies VPN Windows server 2003 Certification Authority

    I need to make a remote access for a Windows XP client using a VPN to my windows 2003 server R2 based domain. The thing is I want to use certificates, and I need help for this configuration. How shall I setup the server so that it promts the user with a certification message when trying to log in the domain You might want to post this under another forum topic - like networking or security - doesn't seem to much related directly to sharepoint development. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Can't Draw indexed primitive.

    I can't get my code work. I'm attempting to make some 2D rendering using device and memory vertex buffers and device index buffer. I post here all code with initialization and drawing in such order as it goes in program execution. Maybe someone could give me an advise about what is wrong with it. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// bool Init( int _BuffSize) { CSprite::DeviceVB_size = _BuffSize; if ( FAILED( RenderDevice->CreateVertexBuffer( _BuffSize * sizeof (CUSTOMVERTEX), D3DUSAGE_WRITEONLY , D3DFVF_CUSTOMVERTEX, D3DPOOL_DEFAULT, &DeviceVB, NULL ) ) ) { MessageBox( NULL , L "Can't create VB ...Show All

  • Internet Explorer Development IE7, OE6 Printing problems with headers

    Having an intermittent problem printing To: From: CC: Subject: Attachments: headers on emails. Usually happens with larger emails or emails with large attachments or emails that have been replied to or forwarded from other people. Have installed Generic/text printer and sent the email to this printer but sometimes the headers are still missing even printing this way. I have if I open the offending email and highlight just one or two words in the text of the email eg Dear John and then print the email using my HP printer (not as text on Generic printer) - the headers then print and so does the selected words. Don't suggest using Outlook as often we only print the first page of emails as we already have the rest of the email on file especial ...Show All

  • Visual Studio A problem with visual 2003

    Hello, I start debug on the first line of code. The program does not respond. When I try to break in the debug, I get: Unable to break execution. The process does not contain any programs Have any idea what does that mean Someone told me it might be because of some static members, initialized. But crippling the debugger like this What can it be and what should I do to discover the cause of this If I just run it in release mode without debugging then the program works. Ok, I simply closed visual and opened it again and now it debuggs just fine. What could have caused this Thanks in advance. I've run into a similar problem, here are some details. Code that at one time ran with no problem does not ...Show All

  • Visual Studio Express Editions reverting to default radiobutton checkstates

    I have a dialog with some radiobuttons on it. I want to 'get' the .check value from each when it(the dialog box) loads-before any changes are made. Then when the OK button is pressed, the boolean values are renewed with the new values that the user clicked, but if the Cancel button is pressed, then no matter what changes were made, everything is put 'where it was', so to speak. OK.... I have a solution that I like... but it may be a bit scary. It's not Rocket Science. I made an extended radio Button Control dll. It's very very simple. The entire DLL looks like this: Imports System Imports System.Windows.Forms ' Must add this as a project reference also Public Class Rb Inherits System.Windows.Forms. ...Show All

  • Software Development for Windows Vista FindLast on UserEvents have been removed

    Hi, I track certain data items in workflow using the default tracking on SQL. I used to find the last tracked data item with the following line ( sqlTrackingWorkflowInstance.UserEvents.FindLast(_userKeyIsScreenData) ). It seems that IList is now the implemeneted container. How would i find the last instance of the data item tracked Regards Jaco (Should iterate through the list and asume the last item in the list would be the item i last tracked ) ...Show All

  • Windows Forms How to add the .net setup file into a project setup file?

    We have developed the project using c#. We have created the setup file of our project, while installing the project, first it should check in that system, wthr .net framework is there or not, if it is not there means automatically it has to install the .net framework. so for that purpose how to add the .net setup file into my project setup file hi, bingo it worked....thanks a lot The mistake what i was doing was after completing the installation of .netframework and windows installer 3.1 it was asking for reboot and i was selecting "no".was wrong u should dselect "yes"and once it is reboot it will automatically start installing sql Express followed by my Application. Thanks . if u can help me by gi ...Show All

  • SQL Server Triggers

    Hi, I am pretty new to SQL triggers. I want to create a trigger so if there is any updates on any record, the trigger will insert something to another table. My problem is whenever I have an update for multiple records, only the last record got inserted to another table. Looks like the "inserted" only retain the last record updated. Here's sample of my code create trigger UPDATE_INVENTORY on Inventory FOR UPDATE AS DECLARE @LocationID int DECLARE @TID int DECLARE @doUpdate bit FOR EACH RECORD SELECT @LocationID = LocationID, @TID = TID, @doUpdate = DoUpdate from inserted IF @doUpdate = 1 BEGIN INSERT INTO [Update](LocationID, TableCode, ID, Type) VALUES (@LocationID, 2, @TID, 'UPDATE') END ...Show All

  • SQL Server Incorrect syntax near 'nvarchar'

    When I try to insert data in sql server 2000 database with a formview. I got this error: Line 1: Incorrect syntax near 'nvarchar'. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Data.SqlClient.SqlException: Line 1: Incorrect syntax near 'nvarchar'. The insert statement is right and works manuallly. INSERT INTO REUNIOES(DATA_P1, DATA_P2, [MIG/SIR], FRENTE, LIDER, ATIVIDADE, DATA_PLANEJADO, DATA_CONCLUSAO, DATA_REPLANEJAMENTO, STATUS, EQUIPE) VALUES (@DATA_P1, @DATA_P2, @MIG, @FRENTE, @LIDER, @ATIVIDADE, @DATA_PLANEJADO, @DATA_CONCLUSAO, @DATA_REPL ...Show All

  • Visual Basic system is idle or no input from user

    in my application i need to know if the system is idle for more than 5 min my requirement is if the application which i am developing is now open on desktop and if the user of this application dose not give any input to the system for moure than 5 min it should open a dialog which promt the user to input the reason for the idleness  [SJW: Merged Thread  -please do not multipost] You could monitor key presses on the system using the GetAsyncKeyState Function. Take a look at this url: http://msdn.microsoft.com/library/default.asp url=/library/en-us/winui/winui/windowsuserinterface/userinput/keyboardinput/keyboardinputreference/keyboardinputfunctions/getasynckeystate.asp ...Show All

  • Visual Studio Remote debugging with VS 2005 when TCP/IP filtering is on

    I have an embedded XP environment where TCP/IP filtering is turned on and only a small number of ports are allowed to be open. With MSVCMON, we knew which ports were needed and we'd open them up to allow DevStudio sessions to remote debug. With VS 2005, MSVSMON "seems" to allow you to select a port (like dbgserver for Windbg), but when I try to connect I still am told that I cannot connect. I did some network sniffing, and saw that VS did an initial handshake on the specified port, but then switched to some other, random port, which is not opened on the server and therefore led to the debug session failing. Can anyone tell me if there is a way to use MSVSMON in this type of environment where I want to know (and control) which por ...Show All

  • .NET Development XPath query problem

    Hi I have a XML file like below. This XML is loaded into a DataSet, and I then create a XmlDataDocument. XmlDataDocument doc = new XmlDataDocument(dataset); Using this document, I create a XPathNavigator: XPathNavigator nav = doc.CreateNavigator(); I now want to pick all <author>-tags who has written book "Book nr 1" (only one in this case). But how do I do this This one doesn't work :| XmlNodeList nodeList = doc.SelectNodes("//root/authors/author[bookID=//root/books[bookID]]"); Kind Regards <root> <authors> <author> <name>John</name> <bookID>1</bookID> </author> <author> <name>Peter</name> <bookID>2</bookID> ...Show All

  • SQL Server How to: join 1 table to 2 columns in another table?

    I have two tables: Orders, with OrderID as primary key, a code for the client, and a code for the place of delivery/receipant. Both the client and place of delivery should be linked to the table: Relations, where each relation has it's own PrimaryID which is a auto-numbered ID. Now I want to substract my orders, with both the clientcode, and the place of delivery code linked to the relations table, so that for both the name and adress is shown. I can link one of them by: InnerJoin On Orders.ClientID = Relations.ClientID, but it's not possible to also link to the ReceipantsID. Is there a way to solve this Hi, so the placeofDelivery is another clientid Then it would be something like SELEC ...Show All

©2008 Software Development Network