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

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

blueray

Member List

Fatt
CelloJ
AnthonyKautz
SQL Champ
SkyPilot007
Help Me out Please
Brouwerke
Krebsag
Mahesh Chandramouli
Bingo Basic
BJB
JimBoDH
Rraj
WebFinn
weaver2045
sogod
iam_RAms
Eric Carter - MSFT
Joshua Lowry
Justin20009
Only Title

blueray's Q&A profile

  • Visual Basic Convert 4-byte VB6 Date to VB.net datetime type

    Hi, i have a file generated by vb6 wich store some records with a 4-byte date field. i want to know how to read it from vb.net thanks diego If I recall correctly, in vb6 dates were basically stored as a double value - assuming that is the case, you can read them as a double and use the  "FromOADate" Method to Convert the value to a VB .Net date. ...Show All

  • SQL Server import/export tools

    I install sql2005 final and the SQLServer2005_SSMSEE.msi ... but i don’t find de import/export tools. I need import a DB from MDB to SQL 2005. Thanks "Where are the import export tools for SQL server 2005.  The full version." The answer is simple, but denotes a flaw in the user interface.  You have to right click on an existing database in order to obtain the 'all tasks/import' feature.  It really should be avalilable on a higher order item, such as right clicking on the 'Databases' item in the hierarchy.  If you have a fresh version of SQL 2005 and it is empty, you have to expand the system databases selection a ...Show All

  • Visual C++ binaries compiled using VC8 not running on IA64

    As VS 2005 is not supported on IA64 platform i had to use cross-compilation on 32bit machine. i did vcvarsall.bat x86_ia64 for setting the build environment. after building the application i tried running it on  IA64 machine but it is not running. D:\samples>exercise.exe The system cannot execute the specified program. manifest info is embeded in the application and in its dependency dlls. on checking C:\Windows\WinSXS folder the CRT dlls and manifest were missing. so i copied the dlls and manifest files from my VC8 installation. dlls from C:\Program Files\Microsoft Visual Studio 8\VC\redist\ia64\Microsoft.VC ...Show All

  • Visual Studio Express Editions LINK : fatal error LNK1104: cannot open file 'oleaut.lib'

    I am trying to write a simple windowed program. When I build it gets the msg above. I have searched my disk and "sure nuff", no oleaut.lib. There is a oleaut32.lib. I have no idea where or why either is called. Anyone have an idea what's going on this is my first attempt to build anything with Visual c++ Express. The SDK is installed.... Further info: When I use the search function for oleaut, I get zero references. What is this thing anyway   When you say you installed the SDK, did you edit the proper files afterwards See: http://msdn.microsoft.com/vstudio/express/visualc/usingpsdk/ ...Show All

  • SQL Server Using a parameter for the "IN" clause

    All, Having some trouble with getting the "IN" statement to return results from a stored procedure. I want to pass in a string of values, such as ('999999', '111111'), to my stored procedure and use it in a select statement. The SP looks something like this... @someNumbers [varchar](1200) SELECT * FROM someTable WHERE someNumber IN (@someNumbers) This doesn't return any data. How do I define something like this in the stored proc Thanks Mike Hi friends, Have you seen this article This discusses about  passing a list of values to use in the IN clause. " How to pass array of values into SQL Server stored procedure using XML and Vis ...Show All

  • Visual Basic Printing Checked only Checked items from Checked List box

    Hi,  I'm a beginner learning at home from Microsoft. I have The visual basic 2005 express. I am attemping a project where my page contains 3 Checked list boxes. What I would like to do is print a list possible what I think you call conatating the 3 lists together and then only printing the items I have checked. I think I need maybe something like an if then statement. And then maybe iteration to go through my List to print only checked boxes. This is what I tried ,Remember I'm a Beginner If checkedListBox1.Item is true Print Item. I'd like to look at full code for this including How I would declare my varibles since my sytem has no ide ...Show All

  • Visual Basic How do I execute a form "FORM.VB"?

    How do I execute a form "FORM.VB" Michael yes great code dude iam a total newbie to thiss hehe :p is it also possible to open a forum but then not a new window well yes a new window but i can also click the other window now is there a way to open a new window and then disable the other window thanxs alot ...Show All

  • Visual Studio Express Editions Open a dialogbox with vb.net

    Environement:I'm using visual basic studio express edition and sql server express edition. Problem: I write a code to delete some datas in the sql server. But i want that before deleting, a message box opens with two options in it. One option as yes if user is sure to delete the data and no if the user changes his idea. I tired to add a new dialogbox to the project with ok, cancel. I was thinking to use DialogResult.Yes but the thing is i cannot open that dialog box. I'm mistaken some syntaxes (maybe not mistaking, just I dont know) just because i'm quite new to the vb.net and visual studio.  I'm sor ...Show All

  • SQL Server SQL Mobile performance/size problems with WM5 device

    I just upgraded our application from SSCE 2.0 to SQL Mobile. Our app is written in C++, and we use OLE DB for most of our queries, including the routine the downloads and inserts our lookup table data. This application is running on a Dell Axim X51. Using SSCE 2.0, this routine takes 236 seconds, with most time spent inserting data into various tables (using OLE DB). The resultant database size is 15.1 MB. Using SQL Mobile, this routine now takes 675 seconds, with a resultant database size of 27.9 MB!! There is a noticable increase in time when the downloaded data is being inserted into the database. What would be the reason(s) for the slowe ...Show All

  • .NET Development Xml Serialization breaks OO encapsulation?

    Only public fields / properties are xml-serializable, as I tested and searched on web. What happens if I have a class containing read-only properties, or internal states (private fields) that are not public Do I have to compromise the encapsulation concept in order to get it serialized Blair Allen Stark wrote: XML is just a simple data interchange for passing the public data an object presents back and forth. Almost by definition it needs to be read/write. And XML makes no specification as to how the consumers are to contain the data. Yes, we typically write our own suppliers and consumers for both sides, but that is really j ...Show All

  • .NET Development Application update toolbox for .Net?

    Many recent applications include some auto-update features in one form or an other. I would like to know if there is a toolbox to do that with .Net Thanks in advance, Joannes Hi Joannes, A ClickOnce application is a client application, generally a WinForms app.  It could install a service when it started up the first time (assuming that it had the correct permissions), but it cannot be a service by itself. ClickOnce apps have a data directory where they can store data files to read and write from. There's also application scoped isolated storage, which allows a ClickOnce app to have files which ...Show All

  • Visual Studio Express Editions Internet Explorer in C#

    Hello, First of all, I am very thankful for these forums and I am glad you guys are here to help! Anyway, I have Visual Studio 2005 Express C# Edition and I am working on a program and let me explain what I need to do. Okay, so I am working on this program. I was talking to the head manager on this and he said here is what we need. We need to have one text box and one button to load a website. Inside the text box the user will type the URL in. When the button is clicked on, it will load the URL from the text box. How can I do this Paul Hi! Simple, use WebBrowser control, Button and TextBox controls on your form. On button's Cl ...Show All

  • Windows Forms Am I doing this right?

    Hi!, I'm kinda new to .NET and I'm trying c# 2.0, I'd like to know if my approach on this is correct or not, please review: partial class Form1 : Form {     private Form childForm;     private Form1 holder;     public Form1()     {         InitializeComponent();         holder = this;     } &n ...Show All

  • Smart Device Development how to subclass??

    I need to intercept some messages sent to my VB form and I learned that subclassing was the solution to this. I also heard that it is much easier to subclass in VB.NET because you can simply override WndProc. does this work in Smart Device VB because there appears to be no "Message" type... how can I subclass my form should I use the old VB6 way or can I do it the "pure .NET way" as shown in this tutorial Thank you, please help. Does information in this artcile on Handling Windows Messages help http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnnetcomp/html/messagewindow.asp   ...Show All

  • Windows Forms loading a browser in a pane or the likes of it

    I want to display a XML file similiar to how IE displays a XML with all the nodes viewable and expanded etc. How can I do this in a windows form No easy way to place HTML directly into an embedded browser control. The most current code here on this site, however, wrote an HTML rendering control, which I'm guessing works a w ...Show All

©2008 Software Development Network