Software Development Network Logo
  • Visual Studio
  • Microsoft ISV
  • VS Team System
  • Windows Forms
  • Smart Device
  • Visual J#
  • .NET Development
  • Visual C#
  • Game Technologies
  • Visual FoxPro
  • Architecture
  • SQL Server
  • Visual Basic
  • Windows Vista
  • VS Express Editions

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

Eren

Member List

Peter_
Bruce Bukovics
BasildonBond
Byaloz
bdp973
Emmalo
Srig007
biriktirici1
cmn
Junifer
Cristianoq
aaronmarissa
kevin_estcst
Terry Smith
Jeroen van der Wal
Gogou
MicHerz
LFS
ScottTTx
GLutz78
Only Title

Eren's Q&A profile

  • .NET Development Debug initialization code

    How does one debug the initialization code I have a program written in VS C# Express. It works fine on the development machine (Windows 2000 Pro), both inside the IDE and running standalone. I take the same source code and run it under Windows XP and it fails during initialization (I know this because I have a MessageBox to indicate when I return from Initialization). When I run the program in the IDE on the XP machine, it works fine. How do I f ...Show All

  • Visual Studio Express Editions Order Tables Ascending in DataSet

    Hey there, I have a problem cause I don't know how to order tables ascending within a dataset, so I need to know how can I do that, I have for example these tablenames within a dataset in this order: "0050Colors" "0021Cars" "0120Symbols" "1008Field" "0215Country" that's the order in what the tables are added into the dataset, and I need them in the next order: "0021Cars& ...Show All

  • Visual C++ Trouble after installing VS2005 under Windows 2003 R2 x64-Edition

    Hi there, I'm currently setting up my new machine (Fujitsu-Siemens Primergy TX300S2 with 2 XEON EM64T-Processors). The OS I have installed is Windows 2003 R2 x64-Edition. After installing VS2005 Professional on the new machine I was somewhat suspected! I created a little "Hello World"-like test-project as a native Console-Application under VC++ 8.0. The first things I missed after starting the debugger with F5 are the Disassembly ...Show All

  • Visual C++ Capturing WM_POWERBROADCAST from a console program??

    Hi all :-) I'd like to know if someone has suceeded in capturing the WM_POWERBROADCAST message from a console program. Can it be true that its necessary to implement a thread message pump to achieve this / Casper Agerskov ca_localhero wrote: Hi all :-) I'd like to know if someone has suceeded in capturing the WM_POWERBROADCAST message from a console program. Can it be true that its neces ...Show All

  • SQL Server any one know whats wrong with it

    [CODE]   Private Sub pulllikehell()         Dim cn As SqlCeConnection         Dim rda As SqlCeRemoteDataAccess = Nothing         Dim sqlEngine As SqlCeEngine         Try             ' Create database if it doesn't already exist  &nb ...Show All

  • Software Development for Windows Vista How to finish the Rollback operation?

    Hi. In some business,when someone transact a section,usually there are two results :approve or reject, if he approved, the workflow will continue to the next activity,if he rejected,the workflow will go back to the previous activity,In WWF,how to realize the operation Joysen, Your scenario sounds like a great match for the State Machine Workflow.  Consider the following state machine: State - WaitingForApprovalState  &n ...Show All

  • Visual C# How will I determine if the value of a variable is an integer?

    or a decimal if (isInteger(var) == true)  Meanwhile i can tell you if (xxx) is better than if (xxx == true) --------------------------- float x; (x%2 == 0) -> integer ---------------------------- better you explain what you want to check because there are many solutions to your problem ...Show All

  • SQL Server What is the best way to return boolean logic from a UDF?

    CREATE FUNCTION MyBoolean(@p1 varchar ( 255 ),@p2 varchar ( 255 ) ) RETURNS bit AS BEGIN DECLARE @b bit SET @b= 1 -- plus other heavy logic RETURN @b END GO then call this in a CASE or IF-ELSE this: IF MyBoolean('foo','bar')=1 THEN ... Is there a better way to return and use boolean variable like other programming languages(like c# or vb, that have a true boolean data type ...Show All

  • Windows Forms Real-Time Communication between Forms

    Hi, This may be a simple question for some but I'm not entirely sure how to approach it. I would like two Forms to communicate in real time, you have Form1 which has a Timer, each Tick it updates (just to put it simple) a Label with the number of ticks the timer has done. I want, say, Form 2, which has already been created and shown, to update with the value of the label in Form 1 every time this label changes value. The only way I know ...Show All

  • Visual Studio Team System Iterations, Branching Source Control and Work Items; Has there been a lack of joined up thinking?

    I am not sure if this is something that I have failed to understand, but I'm struggling to map our Agile processes to TFS. On the surface, the process guidance that comes with TFS matches very closely with the way that we work, and I was expecting that TFS would match the guidance. For the most part TFS handles iterations and work items well. We can allocate work items to iterations and move work items between iterations as priorities change an ...Show All

  • Smart Device Development Where can I find/request/buy the Windows CE .NET 5.0 Product Key ?

    Subscriber downloads have Windows CE .NET 5.0 under the Developer Tools->Windows CE tools. I downloaded all 6 CDsand when I try to install it it asks for a Product Key. I looked into the download page (sometimes they have product keys in there) and also at my Product keys sections but there is no such key. Where can I find this key I am not clear on how you are doing this scenario. Is this off of you ...Show All

  • Visual Basic Decent Source Code Site - Visual Basic 2005

    Hi, Want to know if there are any decent Visual Basic 2005 source code sites available yet. Have lookt all over and can only find vb.net (which the conversion does not always do correctly) and allot of vb6 code. I have found that no matter how may tutorials you read and how many books you get none of them cover what you want to to cover. What exactly is it you want to cover Almost all .NET 2003 books are valid for 2005. The ...Show All

  • .NET Development How to trace time for FTP Upload

    Hi, I've written a windows application to upload the files to our ftp location using .NET v1.1. Now my requirement is to find out the time that will take to upload the selected files. Inother words, how can i show the estimated time to transfer any file on the internet Any suggestion are highly helpful to me.. Thanks and Regards, Chakravarthy Hi! Simple way: time left = used time * downloaded size / total size Smooth w ...Show All

  • Visual Studio Team System CreateWorkItem fails after build failure.

    During Team build failure, the workitem is not getting created and is reporting an error: Target CreateWorkItem: C:\Program Files\MSBuild\Microsoft\VisualStudio\v8.0\TeamBuild\Microsoft.TeamFoundation.Build.targets(653,5): error : You are trying to assign invalid value to Severity. WorkItemType does not allow the given assignment Done building target "CreateWorkItem" in project "TFSBuild.proj" -- FAILED. The TfsBuild.proj contains th ...Show All

  • Visual J# importing classes across projects

    Hi, I can't seem to find the right settings to do something very simple.  I have one solution with two projects, both of which are windows executable output.  I want one project to be able to import classes that are part of the other project.  I get compiler error vjs1161 no matter what I add to the references path.  Can anyone tell me what I'm missing As an example, consider the projects to be a game and a map editor f ...Show All

©2008 Software Development Network

powered by phorum