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

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

vinoraja

Member List

MikePagel
Charles Washika
Jeffrey.Ye
AngryHank
Przemek Wasylko
irnbw
redblue
Hakan Gumus
Andy Lambert
faty
Hennesey
Mudassar Ahmed Khan
ac2600
susan18
ibhoopn
Shane Stevens
Father Fil
Lynette Johnson
reyghie
Marc Tomlinson
Only Title

vinoraja's Q&A profile

  • .NET Development Visual Web Developer + SQL express edition problems! Help

    Hi People, hope to find some help. I am new to SQL and vs and currently have to develop a web project. Problem 1: I have created a project in vs web developer, connected it to a slq database located in a file system/rather than on the sql server. Initially, I have created my database with the desired fields and tables, however, after I used web tools in vs web developer to set login preferences, I have got another database generat ...Show All

  • Visual Basic Access to the path is denied After Loadfile

    I am developing an updater that will check an application version and replace files with newer files as applicable. To check the assembly version, I am using Loadfile. However, once I load the file to check the version, I lose access to it. I can't delete it or copy over it. Once the Loadfile method is invoked, is there a way to release the file Here is sample code that will show the problem. It uses a for with a single button (Winforms ap ...Show All

  • SQL Server SQL Server Express Security?

    We are releasing an application built on SQL Server Express in the next few months.  Our clients are mostly small companies with little technical knowledge, and they will be using our application on desktop computers where everyone likely logs in as the same user.  As such, my thinking is that we setup SQL Server Express as in SQL Server Authentication mode.  This way they could select an Administrator password upon first installa ...Show All

  • Visual Studio Team System Analysis Summary - Checks ?

    What does "Checks" on the analysis summary page mean I used to think that this indicated the number of lines of code that were checked. After upgrading from v1.31x to v1.32x, this number went down and I know that the amount of source code didn't decrease. I'm trying to get a ratio of issues relative to the size of the solution. Any suggestions or clarifications will be appreciated. It's the number of times we called out ...Show All

  • SQL Server Select with group

    Hi, on a table with two fields DATETIME and PLATAFORM I need to meka thefollowing queries One return the total grouped by hour like '1:00:00.000' - 5 /* Registries from 0:00:00.000 to 1:00:00.000 from the day choose */ '2:00:00.000' - 12/* Registries from 1:00:00.001 to 2:00:00.000 from the day choose */ '3:00:00.000' - 5/* Registries from 2:00:00.001 to 3:00:00.000 from the day choose */ '4:00:00.000' - 12/* Registries f ...Show All

  • Visual Studio External Reference Library - Errror while loading code module

    Hi there, I am trying the concept of using External Reference libraries written in C# within the report designer. I followed simple samples foudn online where there is one static method that return a "Hello Word" using System; [assembly: System.Security. AllowPartiallyTrustedCallers ()] namespace MyCustomAssembly { public class Say { public static string Hello() { return "Hello World" ...Show All

  • Microsoft ISV Community Center Forums Windows Vista beta

    I am hoping this is the right place to post this request... I own my own computer repair business and I have very many clients. Some of them happen to be extremely computer-illiterate, so I write simple programs to change settings that may be harder to find. for example, instead or clicking start, clicking run, typing in msconfig, clicking startup programs, and unchecking and checking programs, I created a list of very commonly used programs ...Show All

  • Visual Studio Tools for Office VSTO Controls

    I installed VSTO 2005 and tried the same program I had written in Beta 2. Problem- When I drag a TextBox control to the Word template form, the properties window does not change to TextBox1. It stays at ThisDocument. Do I have a bad install Even when I drag a Button control from the Toolbox to the Word form, and try to double click, it does not go to the code window. Thanks for help in advance. Hi Corinne, Based on your description o ...Show All

  • Visual C++ C++/CLI

    I was wondering. Where can I find C++/CLI tutorials for use with the Visual Studios 2005 I have the Team System edition. I rather recommend buying a book, which should be much more comprehensive than a tutorial. And ususally, you don't find tutorials on learning a programming language. ...Show All

  • Smart Device Development C# - Loading a Large JPEG file (> 2Mb) - Memory Issue

    I'm writing a Pocket PC application in C#, VS2005. I'm using the .NET Compact Framework 2.0. All I want to do is load a large JPEG file (2-3MB) taken from a digital camera, and display it in a Picture Box. When I try to do so using the following code, I get HResult -2147024882 --- "OutOfMemoryException" Bitmap bmp = new Bitmap ( @"\Storage Card\TEMP\2MBJPEG.JPG" ); I know that other programs are able to d ...Show All

  • Visual C# How to use RTC API 1.3 to write sip-based application?

        I have written a sip-based application on the basis of RTC API 1.3 code sample.But I don't know how to send message and receive message.      this.client = new RTCClientClass();     this.client.Initialize();     this.client.EventFilter =RTCConst.RTCEF_ALL;     this.client.IRTCEventNotification_Event_Event += new IRTCEventNotification_EventEventH ...Show All

  • Visual Studio Express Editions SerialPort_DataReceived to RichTextBox control in VB2005

    Hi I have been having a difficult time finding the proper way to pass string data that arrived thru the serial port by way of the DataReceived event , to a RichTextBox control on the main form. Moving from VB6 to VB2005 without using the automatic conversion helpers, has been more difficult that i hoped. I have examined lots of newsgroup posts, looked at posted example code and still I am having trouble. Some examples work, but appear t ...Show All

  • Visual Basic Print directly to the printer

    Dear all...^^. I have a program needs to print directly to a Zebra TLP 2844-Z barcode printer. I tried the codes in http://support.microsoft.com/ scid=kb;EN-US;322090, but an error occurred when i run it, as follows: A call to PInvoke function 'test!test.RawPrinterHelper::OpenPrinter' has unbalanced the stack. This is likely because the managed PInvoke signature does not match the unmanaged target signature. Check that the calling conve ...Show All

  • .NET Development Using the Enterprise Library Configuration block with arrays

    I am using the June 2005 Microsoft Practices EnterpriseLibrary Configuration block to read configuration information from an Xml file. I am able to use the block to retreive single nodes but my Xml document also contains a node ( arrayOfSources) with child nodes (source) that I would like to deserialize into an array using the block. It seems like it should be a simple thing to do but I am stuck.  Please can someone help using ...Show All

  • Visual Studio What files to store in Version Control?

    I'm brand new to Visual Studio (I have version 2005). I've created a project (solution I'm not sure of the difference) and I'd like to know what files I should store in my version control system, so someone else could check them out and use them. By the way, the version control system I'm using is NOT SourceSafe. I'm sure there's some documentation on this, but I can't find it. I would imagine I don't need all files in all folders, right So what ...Show All

©2008 Software Development Network

powered by phorum