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

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

yromanen

Member List

Bart Vercauteren
Lynette2
Anthony Fine
Mohammedoo Ali
TonyTCSN
BLiTZWiNG
BBBri
Adner
Paul_G
dork
Lawrence Parker
jyoti.sarkar
Arius
Nerick
Kestutis
Anthony McGary
beechum1
llorrac
Seraphino
Krenshau
Only Title

yromanen's Q&A profile

  • Visual Studio Express Editions Chronometer!! and alarm

    Hey there, please help, I'm trying to create a chronometer within my application... I need it with this format "hh:mm:ss"... and also when it get's to 3 minutes it must display this "Succes" Now... I'm using a timer to do all this, but in order to get the time at the moment I'm using this code... Dim Timex As Integer = CInt (Format(Now, "hhmmss" )) But I think it's wrong cause when I'm going to set the ChronLabel I'm using this: ChronLabel.Text = CInt (Format(Now, "hhmmss" )) - Time so what should I do, please help!!! Here's a simple example. Public Class Form1 Dim Start As DateTime ''' <summary> ''' Set th ...Show All

  • Windows Forms How can I make WebBrowser to navigate 1st site and then 2nd site?

    I tried next C# code. webBrowser1.Navigate(" www.yahoo.com "); webBrowser1.Navigate(" www.google.com "); I want to make webBrowser1 (WebBrowser control) to load Yahoo web page fully (display full Yahoo web page), and then load Google web page. But, with the code above, WebBrowser control displays Google web page only. So, I tried following C# code. webBrowser1.Navigate(" www.yahoo.com "); while (webBrowser1.IsBusy) { } webBrowser1.Navigate(" www.google.com "); But, I failed. Still, WebBrowser control displays Google web page only. I tried bellowing code. But, I failed. webBrowser1.Navigate(" www.yahoo.com "); whil ...Show All

  • Windows Forms ClickOnce Fails with "Value does not fall within the expected range."

    I have a ClickOnce-deployed application installed in offline mode across a range of Windows 2000/XP machines on my network. I now receive an 'Application cannot be started. Contact the application vendor.' error message when I attempt to run the application on my development machine. (It works still on the production machines.) I've run mage -cc, and renamed the '2.0' directory to '2.0x' to ignore its presence. Add/Remove Programs still shows it, and clicking Change/Remove pops up a window for a moment, but otherwise does nothing apparent. I've changed the installation path to be a network path instead of a website, and it still fails. The following is the error log: PLATFORM VERSION INFO Windows : 5.1.2600.131072 (Win32NT) Comm ...Show All

  • Windows Forms .NET Framework Security and a DFS Share

    I am having trouble figuring out the correct .NET Framework security settings for a share mapped through DFS. I am using a Windows XP system and .NET Framework 2.0 (all of the latest patches have been installed) our servers are all running Windows 2003 and the share I am accessing, with all of my Visual Studio code on it, is automatically mapped to drive letter M: when I log in. The share is a DFS share so the format of the share name is \\DomainName\Folder\MyShare . When I attempt to add this share as a URL to my .NET security settings, I cannot find any security setting that will successfully give me FullTrust. I have tried defining the URL as a File, as HTTP, without any settings and I have tried adding access to the share using the ...Show All

  • Visual C++ How to make a compiler link with __CxxFrameHandler instead of __CxxFrameHandler3

    How to make a compiler link with __CxxFrameHandler instead of __CxxFrameHandler3. Is there is any option available. We are developing printer drivers for Vista Operating system, for the XPS print path, using PT/PC support. Problem: Though we could install the binaries on the Vista OS, we were not able to install the Vista binary set on a XP operating system. We have installed the .Net3.0 on XP Operating system. Issue: On investigation, we found that one of our DLL was referring to some functions like : * strcat_s, * _itow_s, * __CxxFrameHandler3, * _except_handler4_common The issue is that the above functions "are not" exported by MSVCRT.DLL available on XP SP2 OS. Build Setup: We are currently building the dll ...Show All

  • SQL Server Combining Output PDF files

    Is there a way to output reports to the same PDF file. Basicly Appending several reports to the one PDF. Without combining the reports using subreports, I think you would use code & custom PDF components, unless you want to jump into writing a rendering extension. Softartisians Officewriter & abcPDF.NET are two possible options. You can also try automating Acrobat. http://www.planetpdf.com/forumarchive/84747.asp One alternative may be to export to a different format and then convert to pdf afterwards. cheers, Andrew ...Show All

  • .NET Development How do I remove or stop empty namespace created when apply xsl code to xml?

    Hi I have a code to remove all empty elements useing XSL but the out put xml file look like the one shown below My question is How do I remove or stop empty namespace (xmlns="") beieng created. Note: My xsl code top element has <TalkMessage xmlns =" http://www.mydomain.co.uk/CM/envelope "> If I use <TalkMessage> then the output xml file is fine Xsl code <xsl:stylesheet version="1.0" xmlns:xsl=" http://www.w3.org/1999/XSL/Transform "> <xsl:output omit-xml-declaration="yes" indent="yes"/> <xsl:template match="DataSet"> <TalkMessage xmlns =" http://www.mydomain.co.uk/CM/envelope "> ''''''' ''' ...Show All

  • SQL Server Error with attributeKey

    Hi everybody, I have a problem while creating my cube. In my database i have two tables Article (ArticleKey, Libelle, ...) articleKey is the pk FactStock (stockKey, ArticleKey,...) strockKey is the PK and articleKey reference column articleKey in article table. There is integrity constraint between this two columns In BIDS, when i try to mount my cube with this two elements and others. i have an error : "Erreurs dans le moteur de stockage OLAP : La cle d'attribut est introuvable : Table : dbo_factStocks, Colonne : ArticleKey, Valeur : 47107" . So, I search help on web and I found this page : http://support.microsoft.com/kb/922673/en-us . So i try element that was written on it. but it doesn't seems to work. If I ...Show All

  • Software Development for Windows Vista .NET COM+ - "Error when enlisting in a distributed transaction"

    Hi, I developed a .NET serviced component with Framework .NET 1.1, instaled it in a win2k SP4 server (COM+ 1.0) and marked that component with Transactions=Required. This application server communicates with a SQL Server 2000 SP3 database server inside the same subnet/domain. When a simple select query is run under the .NET Serviced component, i got the message: "Error when enlisting in a distributed transaction" The COM+ package that hosts this component has an ActivationOption=Library and has the options "Enforce Access Checks for this Application" and "Enable Authentication" marked as false. The component is created from a ASP.NET webform using ASPNET user credentials ... this user is a member o ...Show All

  • SQL Server Slow connection to sql server 2005

    I have a linked tables from access 2003 to sql server 2005 connected using odbc. the connection is very slow. when i use the same linked tables to sql server 2000 the connection is fine. what seems to be the problem Hi, Are you using the MDAC clients ODBC component or the SQL Native Clients one HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Problems building using December CTP

    Hi Ive been happily using August CTP (been too busy to upgrade!) with no problems, I tried December CTP but have problems with documenting several assemblies because they result in a command that must breach the 260 characters path limit, but I dont get this issue with the August CTP. I'm not too familiar with exactly what happens during the whole documenting process yet but I'm including a snippet from the log file from both CTPs in the hope that someone might spot something which may help me out. From August CTP doc build (works fine): Info: Building topic P:Exchange.EnterpriseLibrary.Caching.Configuration.CustomCacheStorageData.Properties Info: Building topic M:Exchange.EnterpriseLibrary.Caching.Configuration.CustomCacheStor ...Show All

  • Visual Basic How to clear browser history

    Hello I am trying to figure out a way to clear browser history from my dektop application, ideally for both FF and IE. Anone know of a resource or some code to help me out Thanks! It's actually in C# and won't be of any use to you, it was just a question like yours on how to delete the history and was pretty much concluded that nothing much can be done about it http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=799879&SiteID=1 pretty much severe Windows hacking on trying to do what you want would be done which is of course not recommended especially when distributing your application to clients ...Show All

  • .NET Development XSLT: search for specific nodes and nodes related to each

    Hi, Sorry this is going to be a long post but I felt it necessary to include source code. Here's a very small portion of my xml document: < xml version="1.0" > <xtvd> <stations> <station id="10436"> <callSign>KERA</callSign> <name>KERA</name> <affiliate>PBS Affiliate</affiliate> </station> <station id="10830"> <callSign>KXAS</callSign> <name>KXAS</name> <affiliate>NBC Affiliate</affiliate> </station> <station id="16123"> <callSign>TVLAND</callSign> <name>TV Land</name> <affiliate>Satellite</affiliate> </station> <sta ...Show All

  • Visual Studio no drill down option on my crystal reports gallery

    I'm using asp.net 2.0 , visual web developer 2005, and the crystal report xi When I create a new crystal report (eg: crystalreport.rpt), it will popup Crystal Reports Gallery with 3 choices in Choose an Expert: -Standard -Cross-Tab -Mail Label others like drill Down, Form, Form Letter.. MISSING I saw the online tutorials that Drill Down has a lot of charting functions, but mine don't have Drill Down option in Choose an Expert. Help... I have no idea at all, why it doesn't appear... birdanddog wrote: I'm using asp.net 2.0 , visual web developer 2005, and the crystal report xi When I create a new crystal report (eg: crystalreport.rpt), it will popup Crystal Reports Gallery with 3 choices in Choose an Expert: -Standard -Cross-Tab ...Show All

  • Software Development for Windows Vista TFS Build (MSBuild) and Windows Workflows

    Hi, I am trying to make a daily build on a Team Foundation Server Build Server. The project I am building has Windows Workflow Foundation components inside. What do I have to do on the TFS Build Server, so that my Team Foundation Server projects will compile My goal is to have just the neccessary bits an pieces on the Build Server to make the Build work. Not the whole Windows Vista SDK etc.. What I have done so far: 1. Created the Windows Workflow Foundation MS Build \Program Files\MsBuild\Microsoft\Windows Workflow Foundation\v3.0\ Folder, and copied the WS Build Target Files. ( On the TFS Build Server ) 2. Registered System.Workflow.ComponentModel.dll ,System.Workflow.Activities.dll, System.Workflow.Runtime.dll in the G ...Show All

©2008 Software Development Network