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

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

Snoo68

Member List

Paashi
murk
jms04081974
devalapa_k
Liviu Ursu
f00sion
Todd Weber
txksa
G_Mahajan
Ramesh Kumar.S
Torns
Dave Waterworth
Mach6Solutions
aschreiber2
Woo
jibreel
David Deen
Greg Billinge
oopdeveloper
Mick Badran - MVP
Only Title

Snoo68's Q&A profile

  • .NET Development Windows App Not working over Network

    I've got a windows app that connects to a DB and copies a few files from a network share to the local PC. The app is ran on the network share because everybody in our company uses it and when modifications are made, we don't want to have to redistribute 50 or so copies of the .exe. Every time I run the program from the network, I get a standard Windows error and Microsoft wants me to send them the information, it doesn't get too involved oth ...Show All

  • Visual Basic richtextbox

    I have a memo field in my database for storing large text data that are formatted. I used richtextbox in my forms for the data entry, my problem is how can I display the contents of the memo field without the formatting codes in a data report. I am using VB 6. I hope you can help me on this. Thanks... These forums are for VB.NET and there are better places to find answers for older versions of VB. Maybe t ...Show All

  • .NET Development error when connecting to SQL server using ASP.NET (VB) with windows authentication

    Hi, I got an error when i tried to connect to SQL server using ASP.NET (VB) with windows authentication using the statement: sqlconnection(server=sqlserver;database=db;integrated security=SSPI) the error was: SQL Error : Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection. SQL Source: .Net SqlClient Data Provider SQL Error Number: 18452 Hello Th ...Show All

  • SQL Server Auto List Members

    In SSMS I have "Auto List Members" and "Parameter Information" turned on for the text editor/all lanuguages but it does not work in the text editor when connected to a SQL Server 2000 DB. Any suggestion would be appreciates. SSMS does not support intellisense for the SQL Editor/TSQL. (as of this time) :) ...Show All

  • Smart Device Development .NET Conversion problem

    Hi. I have a .NET 1.1 project which works great. I want to convert this to .NET 2.0 (both CF) I have a UI problem here. In my project I have events and delegates on the main UI. in .NET 1.1 I get no errors, everything works fine - I also get no errors from the UI Designer in VS2003   When converted to .NET 2.0 in VS2005 (yes I did update the framework/platform in the project after the VS2003 project conversion to VS2005) - I get ...Show All

  • Windows Live Developer Forums Questions regarding MSN Messenger 8.0

    Great news! I have 2 questions about the API: 1. Will the API be managed or native I would love to have a managed API or at least a managed wrapper supported by Microsoft (like PIA for Office). 2. Using this API, will it be possible for external applications to send and listen for messages, but invisible to the end-user One more question: 3. Will this release include support for MSN Messenger for Pocket PC If the answer is no, are there ...Show All

  • Windows Forms How to make a form full-screen in C# 2005?

    Hi, I am trying to make one of my application forms full-screen - no borders, no task bar, etc. How can I do this Thanks! -- stockcrack What you are trying to do is a three part thing, first, hiding the taskbar: In order to show and hide the taskbar you can use this: [DllImport("user32.dll")] private static extern int FindWindow(string className, string windowText); [ ...Show All

  • Visual Studio Adding/Removing elements in domain model

    After removing element from the domain model and then adding it back, I am unable to edit it in properties window UIComponent component = e.ModelElement as UIComponent; UIComponentMoveableCollection uicomponents = component.WebPage.UIComponents; if (!IsFired) { IsFired = true; uicomponents.Remove(component); uicomponents.Add(component); } i ...Show All

  • .NET Development Reading xml from a website

    Hello, I'am using vb.net 2005 and want to read from a website a value in a xml element. I stopped at following code:         Dim myUrl As String = "http://www.demo.com/file.xml"         Dim reader As XmlReader = XmlReader.Create(myUrl)         While reader.Read         End While Can you help me to go on Than ...Show All

  • Visual C++ error LNK2028: unresolved token (0A000019) "int __stdcall LoadString

    Please help I try to acces the resurce file using LoadString. I recivede the error: Linking... ClaseImpl.obj : error LNK2028: unresolved token (0A000019) "int __stdcall LoadStringA(struct HINSTANCE__ *,unsigned int,char *,int)" ( LoadStringA@@$$J216YGHPAUHINSTANCE__@@IPADH@Z) referenced in function "public: void __clrcall AccesResurse::initResLabel(class System::Windows::Forms::Label ^,unsigned int)" ( initResLabel@ ...Show All

  • SQL Server Installing Problems

    I have similar problems to others when installing the SQL Server Express version.  I also get the errror msg about prior versions of .NET, Visual Studio, etc.  I have removed everything, etc. about 4 times each.....can someone please tell me what gets installed in what order.  At one point, MS said to install .NET 2.0 however on the SQL support page, it says that it installs it automatically.....ughghghgh thanks in advance. ...Show All

  • Visual Studio Team System Weird problem with access to source control

    Hi, We've got a strange problem wrt source control. We have two Team Projects, let's call them Project A and Project B. Both projects are worked on by pretty much the same people, so the Contributors group is the same in both projects. Team Explorer and Source Control Explorer work fine, but Workspaces do not. For some reason, some people don't see Project A in their Workspace explorer (they do see Project B). The security settings for both proj ...Show All

  • Visual Basic Web Part Deployment Error [ Microsoft SharedPoint Portal Server 2003]

    hi i am trying to deploy the webpart i am getting this Strange Error A Web Part or Web Form Control on this Web Part Page cannot be displayed or imported because it is not registered on this site as safe. did any had come a cross this type of error in sharedpoint portal server 2003 please let me know th e solutions i am really confuse on this Strange Error warm regards syedhanif Hi! The best ...Show All

  • Visual Studio Express Editions Nothing shows up in data sources????

    I was doing lesson 9 on http://lab.msdn.microsoft.com/express/beginner/ . When I did everything it said, nothing showed up in data sources.  I downloaded the project file and it does the same thing. Here is what it looks like on my computer: http://tinypic.com/hs0wtj (Nothing shows up in data sources) It is susposed to show this in data sources: http://lab.msdn.microsoft.com/express/art/beginner/lesson9.gif --- When I go to the ...Show All

  • Visual C# renaming a file in c#

    i use: fiFileInfo.CopyTo(Path.ChangeExtension(fiFileInfo. FullName + fiFileInfo.Extension, ".enc"), false); to rename a file (eg: ***.ppt -> ***.ppt.enc). if the file is really big (400mb), this take 6-7 minutes. is there a better way to rename files regards meeeeeeeeeep File.Move will rename a file for you. Not sure how much faster it is than the above. There's no File.Rename, to my surpris ...Show All

©2008 Software Development Network

powered by phorum