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

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

Smitty55

Member List

Mark van Bree
Arachne53
Ze Miguel
Jeffrey Peterson from API
jupzi
Aussie
kojot
Simon Clarke
landre3567
plenderj
Peter H40
hashcomp
Hamboo
Sunny Boy
Saranya
debugging problems
Victor2005
Alexey Nayda
Rajesh
SoftwareAndWhy
Only Title

Smitty55's Q&A profile

  • Windows Forms Is FotoVision an ongoing development project?

    Hi rarvesen,  look like you are the moderator of this forums.  I love your webpage.  They look very nice and informational (I like those flower pictures). Anyway, I would like to ask is FotoVision is an ongoing project   Any enhancement will be provided in the future   I think it will be a very good idea if there is a specific site& ...Show All

  • Visual Studio Express Editions Converting from Microsoft Access

    Some time ago i created a database using access 2k3 and until now i have started to use VB Express i never thought of a stand alone package so my Question is: Is it possible to import all the forms and talbe etc from my access database into VB Express or do i have to start over with the forms and create a new database and possibly import the data into that. Any help in the subject will come in handy as i am new to all this. Thanks in advance. Mike hi, you don't need to recreat your database, i don't know anyway to import Access forms , so all what you gonna do is to rebuild the forms you stil ...Show All

  • SQL Server Trigger on enable / disable SQL User

    Is it possible to run a trigger whenever a SQL user is disabled or enabled From what I've seen of various sysusers and syslogins tables there isn't a column that represents enabled or disabled. One more thing about non-schema scoped names (like DDL triggers, ...) SELECT OBJECT_ID(' SomeTriggerforAlterLogin ') will always return NULL because it doesn't "know" how to look outside of the schema namespace. This is doc'ed in the BOL, but customers are tripping over it. ...Show All

  • SQL Server Namespace in every element from web service

    I created a web service using ASP.Net 2.0. The sample output on the ASMX page shows the namespace only in the root element, like this: <ArrayOfMyRow xmlns= http://www.mynamespace.com/myservice >   <myRow>     <element1> string </element1>     <element2> string </element2>   </myRow> </ArrayOfMyRow> The output from the WebService task, when saved to a file, contains the namespace in every element, like this: < ArrayOfMyRow xmlns:xsi= http://www.w3.org/2001/XMLSchema-instance xmlns:xsd="http://www.w3.org/2001/XMLSchema" >  <myRow > ...Show All

  • Visual C# MSB3331 Warning After Project Rename

    I recently renamed an existing project and thought I got all the references but I get the following warning when I do a build. Any ideas Thanks. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3331: Unable to apply publish properties for item "dna.radworkflow.worklist.workitems.pdb". Me, too. How can I let them disappear Regards, y.m ...Show All

  • Visual C# NullReferenceException

    if (obj != null) obj.Visible = true; and I STILL get a null reference exception. WHY Can you post the exception stack trace It could be the Visible propety itself dereferencing a null reference, and therefore throwing a NullReferenceException. ...Show All

  • Windows Forms HtmlDocument 2.0

    Hi, In C# 2.0, I have a WebBrowser 2.0 control embedded in a UserControl. I need to retrieve the href property from each Link in a Links collection. This can be achieved through mshtml.HTMLDocument with the "href" property like this: foreach (mshtml.IHTMLElement link in wbDoc.links) { string sHref = link.href; } It seems that WebBrowser 2.0 implement HtmlDocument and it don't have a "href" property. How can I get the "href" from a HtmlDocument like foreach (mshtml.IHTMLElement link in wbDoc.links) { string sHref = link. ; } or, how can I implemen ...Show All

  • Visual C# Format date

    Hi! How can I ensure to have a universal date format (mm-dd-yyyy), independent of regional settings, in an application The code is this: DateTime date = new DateTime(); date = DateTime.Now.Date; Now, if regional setting is English-US, date value will be in "mm-dd-yyyy" format (9/22/2005). If the setting is not English, date format will be something else, like "dd-mm-yyyy" (22/9/2005). How can I "override" this   What kind of application are you building YOu can manually set the Culture / UICulture of the CurrentThread to the spcific Culture you want. This way the dates will be formatted as per ...Show All

  • Smart Device Development Converting Wav files to Mp3

    Can you please help me in giving a suitable code in VB.Net or C# .Net to  convert Wav files to Mp3 in smart phone Device Emulator . Version: MSDN 2003 Expecting a quick reply .....Thanks in advance.....    Most likely there’s no such thing as MP3 encoder for PPC in VB or C#. Many reasons from performance issues to copyright issues would prevent that. You might be able to adapt some of C++ sources available (e.g. LAME), but that would take a lot of effort and performance will be far from real time. ...Show All

  • Visual C# Is C# the best language to learn/know?

    Hello, I am currently studying C#.  I presumed that C# is much better than VB.NET and so started studying it.  But it seems to me that most everyone related to microsoft is always pushing for VB.NET and not having much to say about C#, so what is going on   Id Est; - I now regularly catch the Dot NET Rocks radio show, which seems to be based, or at least biased toward VB.NET.  - I stumbled upon the VB.NET PDC05 disk online at http://msdn.microsoft.com/vbasic/pdc05/default.aspx which I was quite impressed with, so I thought I'd find the C# equivalent, to no avail.  Please let me know if there is one availa ...Show All

  • Visual Basic About connection though MySQL

    Hi all, good afternoon! Anyone know's what's the best way to conect to MySql thought VB 5, using ADO or DAO Thanks, Vivian www.connectionstrings.com : OLE DB, OleDbConnection (.NET) Standard: "Provider=MySQLProv;Data Source=mydb;User Id=UserName;Password=asdasd;" Connector/Net 1.0 (.NET) Standard: "Server=Server;Database=Test;Uid=UserName;Pwd=asdasd;" Download the driver at MySQL Developer Zone . Specifying port: "Server=Server;Port=1234;Database=Test;Uid=UserName;Pwd=asdasd;" Default port is 3306. Enter value -1 to use a named pi ...Show All

  • Visual Studio A Pause Task for debugging

    I have a request for future versions of MSBuild. A Pause Task that I can use to make MSBuild wait while I attach a debugger. This would help immensly with debugging. Okay, it looks like both the SDC & MSBuild.Community libraries have a Sleep Task. I still think this is important enough to warrant inclusion in the base library.Okay, it looks I am assuming that you want to debug a task If that's the case, then a simple trick to do this is to throw up a MessageBox which pauses the task, and then you can attach a debugger. We had also posted a HowTo on our blog about debugging custom tasks. http://blogs. ...Show All

  • Visual Studio Can't add MSDN library to x64 install

    Hi All, I have an install of VS 2005 CTP July 2005 on my DELL PowerEdge box (dual 64-bit processors).  The install went fine, but I can't install the MSDN library that was on the DVD.  The install says an unhandled excption in msiexec.exe. Can the MSDN library be installed on 64-bit hardware   Or am I missing something else Thanks in Advance! Corey. What OS are you using If its Windows 2003, do you have SP1 installed (and Windows Installer 3.1) ...Show All

  • Visual C++ STL String^ and gcnew

    In 2005 documentation, article "STL.NET Primer", by Stanley B. Lippman.  The first SLT example shown begins with: vector<String^> ^svec = gcnew vector<String^>; I have tried this.  I get the error: error C3699: '^' : cannot use this indirection on type 'std::vector<_Ty>'  with [ _Ty=System::String ^ ] compiler replacing '^' with '*' to continue parsing So... whats up   Is the above going to be supported   When   Any suggestions as to what I should do Or, have I missed some needed compiler/linker option STL.NET is not part of the Visual Studio 2005 final rele ...Show All

  • Windows Forms Check if underlying dataset was updated

    I've looked everywhere. This has to be an easy one. How do you check if the data has been updated when using data binding in Windows Forms 2.0. I know you can check each row individually to see if it was modified, but that seems like a lot of work for such a simple task. This will be used to check if something was not been saved during the form closing event. Hello. I guess it really depends on what you're binding to. It sounds like you're bound to a dataset of some sort. If so you can just check the HasChanges property on the dataset instance. For example: Dim MyDataSet as SomeStronglyTypedDat ...Show All

©2008 Software Development Network