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

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

Stelresort

Member List

jxl98c
redshock
Didde
Dennis Mulder - dennismulder.net
RussP
markand
Cristina Stanca
adorer
axelfxxx
kettch
wencey
becklighter
Simone1
DiamonDogX
Jeremy Epling - MSFT
sandeep437
Christopher Bennage
DEEPAK GARG
Cammarata
Bark at the Moon
Only Title

Stelresort's Q&A profile

  • Visual Basic How to get computer name

    Hello How can I get my computer name Thanks "System.Net.Dns.GetHostName() which returns you a string. Pretty much the same as Environment.MachineName" There's a lot of difference when you don;t have a network. Why go out to the net to find out who you are when the CLR supports it directly ...Show All

  • Visual Basic Add, Get and PUT records in files

    Hi there I'm a converted developer from a language called Clarion and I really nead som urgent help regarding file handling I will provide som examples on how I workj with files in Clarion I have tree ways of getting a record 1: GET(FileName, RecordID) where RecordID is a LONG 2: I can gett it using a key: FileName.CustomerID = int_CustomerID GET(FileName, FileName.K_CustomerID) Where K_CustomerID is the KEY or Index 3: I can use the NEXT command to sequential read the file: CLEAR(FileName) FileName.LastVisitDay = SomeDate Set(FileName.K_LastVisitDay) This sets the start point of the key Loop until EndOfFile(FileName) Next(FileName) if FileName.LastVisitDay > SomeGivenLimit then break. E ...Show All

  • Visual C# Show no window

    Is there a way to make a console or windows program not show a window I have a program that I am going to schedule that will get data every hour from a database and ftp this up as a file to a server, but I don't want the window to pop up everytime incase there is someone else doing work on this computer. Thanks in advance! To continue w/ GLM's post ...here is a recent article on Windows Services Working with Windows Services which might be a little more user friendly than MSDN. ...Show All

  • Smart Device Development Installing Fonts

    Hi, I would like to display Japanese|Chinese | Korean | etc. text within an application based on user selection of language. I’m in search of Asian Fonts for my PocketPC iPAQ Model ID: hpiPAQ hw6510a, OS Version 4.21 . I tried downloading the following fonts: Microsoft MingLiU true type font Microsoft MS Song true type font from the site http://www.declan-software.com/chinese_ppc/mssong_ppc.htm . http://www.declan-software.com/chinese_ppc/mssong_ppc.htm . http://www.declan-software.com/chinese_ppc/mingliu_ppc.htm I got a msg "This software is made for an older version of Windows Mobile and hence it may not work as desired...". And so even though the fonts got installed on ...Show All

  • Visual Studio Express Editions System.IO.File.Move

    Hi, I hope someone can help. I'm trying to make a program that will simply copy a file and then move the copied version to the desktop. This is what I have so far System.IO.File.Copy("yay.txt", "yay12345.txt"); System.IO.File.Move("yay12345.txt", (Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory), "yay.txt"); I am able to copy the file to c drive however just stumped to get the file on desktop, even if the program is used on a different account, hense why I'm using destktop directory rather than C:\Documents and Settings\-ACCOUNT-\Desktop Hi. I want to make some comments. First of all, as nobugz stated, the code as you posted it should no ...Show All

  • Software Development for Windows Vista ALERT ! Copying many Files/Dirs between Disk's unstabilizes Vista ! Results are inpredictable !

    Hello World as I already explained in my Thread " Copying Files from USB-HD to internal HD: Explorer Out of Memory ! " a few Days ago, this very Severe Error in Vista seems ***NOT*** to be USB-Bound - this Error also occurs if You Copy larger Amounts of Files/Dirs between INTERNAL Harddisks ! So I recently tried to Copy a Root-Dir from Drive D (internal to my System, SATA) to Root-Dir of Drive C (also internal, SATA - this is ANOTHER physical Disk, not just another Partition). The Root has 973 Dirs and 17'614 Files - 1.87 GB of Data. After Drag/Drop from D to C the Copy-Dialog opens and tells my that 18'588 Elements will be Copied. After about 16'373 Elements I get the Error Dialog like "Explorer Out of Memory". After t ...Show All

  • SQL Server Merge Replication with SQL Mobile Server 2005 / SQL Server 2005

    I am using Merge Replication to Synchronize a database on a mobile PDA. I create an empty table 1st using; "engine.CreateDatabase()" then sync with ; "replicator.Synchronize() " It works great the 1st sync, but subsequent calls to "replicator.Synchronize() " dont download new table changes at the server level to the remote PDA. I have found by calling ; "replicator.ReinitializeSubscription(True)" I can get new updates downloaded to the handheld, but it is very flaky / glitchy when using this call and hangs / freezes / or doesn't work all the time, every second attempt seems to work.... My questions is... 1) after initial synchronization, is there steps at the server level or handheld level to request new updates to download - ...Show All

  • Visual Studio Team System How to export all work items from a TFS to another TFS

    hi guys, i just set up a new TFS, and i need to copy all work items from old TFS to the new one, but i really don`t know how to export them. so can anybody tell me how to do it ,i appreciate~~ This tool should do what you want -- I used it and it works great. http://blogs.msdn.com/ericlee/archive/2006/11/20/work-item-moving-tool-is-back.aspx ...Show All

  • Visual Studio Best possible way to Source control TIBCO Projects in SourceSafe

    Hi All, We have a project going into production on sunday. We are using Sourcesafe for version controlling till now. Project contains ( TIBCO project + External Classes( at a different location)) My question is how to handle this after the production release. We need to add new services to the project, but this is due for a MAY deployment. But, if we get any changes or defects in the UAT or PROD, we need to address them as early (seperately) as possible with out incoporating the may release changes. How best can this be done in SourceSafe. Also, one more issue, we need to address the PROD and UAT issues/defects independently, i.e. if we get any defects only in UAT, then we need to make changes to that code, so that it will effect only th ...Show All

  • Visual C++ VC8 complains when #using a types from a VC 7.1 managed assembly that has static const members.

    I am trying to use C++/CLI to compile some managed classes that use types from an old .NET 1.1 assembly that was compiled with VC 7.1. The old VC 7.1 assembly contains classes that have static const members that were declared as follows using the old Managed Extensions for C++ syntax. public __value class DPoint3d { public: double x,y,z; static const DPoint3d Zero = DPoint3d(0.0, 0.0 ,0.0); But when compiling my new C++/CLI classes that utilize the old DPoint3d value type the compiler complains: S:\src\Mozart1\msj\mstn\mscore\clr\Internal\Tests\ElementAccess\ElementAccess.cpp(97) : warning C4393: 'Bentley::Geometry::DPoint3d::Zero' : const has no effect on initonly data member; ignored OK. Is this saying that somet ...Show All

  • Silverlight (formerly WPF/E) Can I get XML(XAMLcode) from WPF/E Objects?

    For example, Draw application (by WPF/E) . How can I upload draw data to server The geometry data which a user makes are complicated. That may be true, but your code has to handle creating the geometry data anyway, right What functions would your CAD program expose I do agree that if you download a large XAML file and allow the user to modify part of the data, which would equate to you changing values of element data in javascript (instead of creating new elements) then it would require a lot more code to also update a "string" representation. Is not WPF/E suitable for such a use From a rendering perspective I think WPF/E is very suitable. But from an editing and persisting ...Show All

  • .NET Development How to extract a value from an object in a form of string?

    string dts="valueOfX"; int valueOfX=1575; How to use the reflection to extract the value of 1575 if the only object that I get is a string called dts Need some help here pls! I've been reading about reflection but need example pls! Thanks  Ahh... that’s why you cannot find dts... it’s not a field of the class but a local variable within a method (in this case the constructor)... try moving them both outside of the constructor and into the class as a whole. ...Show All

  • Visual Studio vb & vc++ both?

    Hi All! i have been browsing through web and forums in order to find out how to install both vb and vc++ express on thesame computer but so far no answer. Can this be done. I tried to install vc++ after vb but vb stopped to function. Rgds, Chopa You should have no problems installing and running any combination of the Express editions on a single PC... I myself have 4 versions installed right now (VB, C#, C++, VWD) in addition to Visual Studio 2003 and 6. You said that after installing C++ Express VB.NET Express quit working... in what way Were there any error messages ...Show All

  • Internet Explorer Development Site shows up fine in IE6 but in IE7 it is really bad?

    I have been working on a company web site for some time now and I have been trying to get ahead of the game and making it relying completely on css for layout and only have a few images that are not set as background images in css. I have also gone through the trouble to make sure the page was validated using w3c validation tool, I even changed the doc type from xhtml1.0 transitional, xhtml1.0 strict, and xhtml1.1 just to check if it would validate for each and it did. So, when I go to test it in IE7 the site completely fails and everything gets stacked in the top left corner. Anyone have any idea why that is happening I checked it out in Firefox and it load fine, though when I install (i uninstlled IE7) IE7 even firefox loads it badly. D ...Show All

  • SQL Server Interval/Bucket Dimension

    I am trying to find the most efficient way of handelling discreet buckets over continuous/discreet set of values. In english I am looking to have a dimension that says if age is between 0 and 5 they are an infant, 6 to 18 child and > 18 adult. I know I can do this in a case statement but I have similar senarios that require multiple levels of nesting and the ability to easily change the banding criteria with many fact table sharing the same banding information. I have done this in the past by preprocessing the fact table and updating the key value based on between joins, but this is very inefficient on large datasets (upwards of 30 million rows). I also need to be able to do this across continuous values such a monetary amounts ...Show All

©2008 Software Development Network