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

Software Development Network >> Jack Lucky Smith's Q&A profile

Jack Lucky Smith

Member List

4B7
strix
WineMan
Swaykid
newbieneedshelp
NemanjaTheLost
ElliotHC
drinkwater
InHowes
IanTaite
GroZZleR
vutkuri
Flecko1
Secsi
Andre.Ziegler
mahima
Craig Schaepe
westis
TPECI
Iram
Only Title

Jack Lucky Smith's Q&A profile

  • Visual Studio Express Editions Inserting "Null" Values on a SQL DB with a Table Adapter

    Hi all!!! I have this quite simple SQL 2005 Express DB. The structure of the DB is the following: id - Int (Primary Key) date - datetime text - nvarchar(50) I'm trying with a TableAdapter to insert a "null" value to the field's date and text but no good. Me .TableAdapter.Insert(1, what do i put here !, what do i put here !) Thank's dp I don't believe that this answers the original question, which was how to make a TABLEADAPTER deal with nulls properly. As I understand it there is a problem in VS2005, such that the automatically generated dataset used by the TableAdapter has a "NullValues" setting of (throw exception), In my ophinion this basically rende ...Show All

  • SQL Server How to allow remote connections to SQL Server 2005 Express database

    I've developed an asp.net 2.0 web app with vs 2005 and am using a SQL Server 2005 Express database. The app works fine locally, but after uploading to the remote web server the following error occures: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) How do I go about granting remote connections to SQL Server Express Does the web server have to have SQL Server Express installed in order to run apps that utilize SQL Server 2005 Express databases Do I grant access locally ...Show All

  • Visual Studio Express Editions Saving Settings?

    Hey i have made a little program in VB2005. Their are some settings of cores :) Right now i am saving them a very strange way.. I make a txt file for each setting. And then i just use the my.computer.filesystem.Read/Wright ting. Hmm.. so if it reads like the file contains the text "1" then it will activate the setting... That is quite hard to do that for every settings. And it is quite messy to look at in the program folder where all the files are saved. So my question is: Is their an easier way to do this I am thinking of something like one text file where you could do it like this AutoSave 1 Hide 0 You know 1 = on, and 0 = off I was thing that the vb might somehow reconigse the text "AutoSave" and then reads i ...Show All

  • Visual Studio Team System How To Generate Sales Data

    I want to generate sales data where different product will have different price in diferrent date. Let say I have a Product table to store the MinPrice and MaxPrice of each product. How do I generate the data so that the price is in the range of MinPrice and MaxPrice for each product Thanks. Jimmy Hi Jimmy, Here is my answers to your questions: Answer to Question 1: It is my misunderstanding of your question, since I saw you mentioned Date. Sorry. Answer to Question 2: Try set the Min =0, Max = 900 for MinPrice and Min=100, Max = 1000 for MaxPrice, and Keep the seeds on both generator the same. You should get pretty decent MinPrice/MaxPrice pairs. Answer to Question 3: Use ...Show All

  • .NET Development isolation level

    I am using .net and wish to use Com+ for transactional handling. I wish to know that if i wish to achieve optimistic concurrency in .net database transactions, which one of the isolcation level to use 1)readcommitted 2)readuncommited 3)repeatableread 4)serializable Also please let me know in which conditions should we use each of these isolation levels Hi Leohere, The online MSDN Library is your friend. It contains lots of helpful data ! Have a look at the different types of isolationlevel and choose the one which fits your specific needs the best. ...Show All

  • Windows Search Technologies Default web search engine

    Hello All How can you tell WDS to use google for the default web search, currently mine now goes to http://wwwa.look-up-results.com/ cannot find any info for this site on google ot any other search engine Any assitance greatly appreciated Sorry for the late reply, but I think I found it, with Mcafee's assistance. Part of the problem is trying to find anything using the entire name. It appears it changes the www part of the name to several names, so you can try searching under "look-up-results.com". I didn't find anything there, but I did note that Google (when clicking the HOME button) will come up... but won't display the results a second time. My updates expired from ...Show All

  • Visual Studio Express Editions MicrosoftR Visual C#R 2005 Express Edition: Build a Program Now!

    When I access the Registration Benefits Portal, I see many products I can download, but MicrosoftR Visual C#R 2005 Express Edition: Build a Program Now! is not on the list. How do I download it Thanks, Barry hi, Register you C# IDE (in help menu ) and follow the steps, after you finish registering wait a day or 2 and the book will be available for you in the page that you talk about hope this helps ...Show All

  • Visual Studio Express Editions Use Visual Web Developer 2005 Express Edition & Crystal Report

    Can I use Visual Web Developer 2005 Express Edition create web application link to crystal report for generating report & exporting report to PDF/Excel If yes, where can I get crystal report plug in Is any license require for crystal report plug in Please provide information to me. Thank you! Crystal Report is not included with the Express products, and I don't know if or where you would be able to purchase it. Here's a link to a thread in the asp.net forum abou this topic: http://forums.asp.net/thread/961322.aspx Tim<MSFT> ...Show All

  • Smart Device Development Problem receiving incoming calls

    Hello All Cannot solve a problem for a long time. I want to intercept incoming voice/data calls on PocketPC and SmartPhone. Everything works fine except behavior of standard answering module. When application calls lineAnswer standard phone application disconnects the call. I have found some solution for PocketPC - I can kill phone process during call and run it again after call is answered, but this does not work on smartphones, because I cannot kill the Phone process. Please, give me some advice on howto resolve this. Thank you for your efforts! You are not supposed to answer incoming calls on phone devices. The overall design is crafted to prevent this. When you start trying to circumvent this limitation ...Show All

  • Visual Studio Tools for Office VSTO Outlook Add-in Debug errors even for simple HelloWorld add-in

    I am trying to learn about VSTO Outlook development and I've tried several Outlook add-in samples online. I'm getting all kinds of weird behavior when I try to debug even a simple HelloWorld add-in. public class ThisApplication Private Sub ThisApplication_Startup( ByVal sender As Object , ByVal e As System.EventArgs) Handles Me .Startup MsgBox( "Hello World" ) End Sub Private Sub ThisApplication_Shutdown( ByVal sender As Object , ByVal e As System.EventArgs) Handles Me .Shutdown End Sub End class Sometimes I get the following in a Microsoft Visual Studio message box: "Unable to start debugging. Check for one of the following. The application you ...Show All

  • Visual Basic Add input from textbox?

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim TextBox1 As String = "TextBox1.Text" Dim TextBox2 As String = "TextBox2.Text" If Button1.CanSelect Then TextBox3.Text = TextBox3.Text & TextBox1 & vbCrLf TextBox3.Text = TextBox3.Text & TextBox2 & vbCrLf End If End Sub What is supposed to go into the RED parts to take the info(text) from the text boxs and add it to the TextBox3 I don't know what do you want to do with this code, but I think you must edit it : Edited Use Environment.NewLine instead of vbCrLf is a strong recommendation. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. I got Animation working but tiny.x has some weird data

    I've been working on a modelprocessor that grabs animation data using the default importer. I've managed to get my own fbx files and tiny.x to animate correctly but I noticed the default importer actually gives me animation keyframes for the body node. They're keyframes at time 0 and time 1.0333333s and they have the same transform. If I use the inverse of the body node's keyframe transform I can transform tiny so that the model is walking upright (otherwise the body is facing down more like swimming). But doing this transform also make tiny float 3 bodylengths or so above the origin. I'm wishing I had tiny's source file so I can see why there's 2 animations of the same transform and where they're supposed to be putting the mod ...Show All

  • Visual C# Does C# 2005 support coding RS232 serial communications?

    It seems VS.NET does not support RS232 serial communications, many people choose to use VB MSComm to do serial communications. Besides, we can also get " Use P/Invoke to Develop a .NET Base Class Library for Serial Device Communications " source code and to apply it in our application from : John Hind's CommBase( http://msdn.microsoft.com/msdnmag/issues/02/10/netserialcomm/ ) However, to get VB MSComm means to buy another software. Does VS 2005 has solved this problem and has some built-in functions to support RS232 serial communication Is there any example about this Thank you! Pockey, I am not particularly enthusiastic about I/O communication, but I have worked on a project that involved transmitting/receiving d ...Show All

  • Software Development for Windows Vista multiple test machines

    Before I go ahead and just do it, is there any reason why i cannot install RC1 (latest build) using the key I have been given by microsoft to test on multiple machines The process for installing and backing up is so slow and I have loads of products to get through. If this is not the case,how would I obtain another key I assume only one key per user is given. best regards Mike Hello Mike, I have heard back from the InnovateOn Vista support team, you are allowed to install RC1 on up to 10 PCs using the same product key. If you need to obtain multiple keys you can go through the download process through the Customer Preview Program at http://www.microsoft.com/windowsvista/getready/preview.mspx . T ...Show All

  • Smart Device Development Cannot install SDK certificates to WM5 phone

    Hi I have a WM5 Qtek 8310 and VS 2005 and installed the SDK tools for it. However I cannot install the SdkCerts.cab into the phone. It says that the installation failed due to not enough system permissions. Also I cannot deploy a small HELLO app from VS2005. The app is signed with the SDK unprivelidged certificate. Error msg from VS2005: The device security configuration disallowed the connection. Ensure that you have the appropriate certificates on your device for development. Review your SDK documentation for proper security settings for connecting to this device. Device Connectivity Component  I have also tried with rapiconfig, but it also cannot connect. All remote CE tools does not work. When deploy ...Show All

©2008 Software Development Network