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

Software Development Network >> Jason D. Camp's Q&A profile

Jason D. Camp

Member List

kconcept
HairyDan
djchapin
XPress Dave
MaggieChan
Dan Heidel
abuck
eyeseesharp
João Santa Bárbara
GNT FoxPro 8
Mattj1990
k2sarah
Marie Ramos
Radexx
Ramkumar Vijaychandran
Adrigo Gallus
Ralf_from_Europe
Prasenna
Tianyu Li
Pria
Only Title

Jason D. Camp's Q&A profile

  • Visual Studio Team System Bug: Data Generation Plan's Column Details - key icon missing

    The Data Generation Plan's Column Details does not display the graphical icon (light blue inverted key) for the "Unique Key" fields. It does display the icons for PKs and FKs. The absence of the icon for UKs is important, because the presence of a UK affects the available choices in the Generator list (Regular Expression is removed) per the help file. The Regular Expression Generator Caution The regular expression generator cannot guarantee unique values. Therefore, it is not available for columns that must have unique values. ...Show All

  • Visual Studio Tools for Office combobox in microsoft excel

    Hi, I noticed that you can add a combobox through data/validation in microsoft excel, however when you leave that cell, there will be no longer any indication that the cell has a drop down list. Is there any way to add a combo box in excel with the drop down indicator at all time. thanks The feature you describe is an Excel feature not a VSTO feature. Using VSTO and Visual Studio, you can create a custom Excel application that adds a ComboBox to a spreadsheet. The ComboBox's behavior can then be programmatically controlled. The behavior of the Excel validation list, on the other hand, is entirely controlled by Excel. Cheers, TC ...Show All

  • Visual Studio Team System Importing schema causes full crash in CTP5 (but worked fine with CTP4)

    I had just upgraded from CTP4 to CTP5 and am now having crashing problem (full crash, have to restart VS) trying to import a schema. It was not never a problem importing this same schema in CTP4. Any ideas Thanks Hi, I had EXACTLY the same problem as ks2006. Same error message. Everything. I'm on CTP5 Refresh. Database has about 30 objects in total. I submitted this at Microsoft Connect: https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx FeedbackID=207714 I also provided a backup of the database that I was trying to import the schema from.   Hope this is useful. its clearly a problem, alot of us are experiencing the same.   -Jamie   ...Show All

  • Visual C# NullReferenceException was unhandled.

    I was sending a pictureframe to a client in synchronous mode which meant, the program gets blocked until the client is found or transfer is complete. Consequently, I shifted to asynchronous mode. Now as far as i can see, there's nothing wrong with the client/server bit of the code but the part, where I am copying the picture frame from a clipboard throws this exception. It's utterly preposterous ! Apparently NOTHING gets copied from the clipboard and the IDataObject ends up having a null status. This never happened in the synchronous communication mode, hell, i didnt even touch the frame grabbing portion of the code. Anybody know whats wrong Most probably you check clipboard BEFORE data is copied. ...Show All

  • Visual Studio Problems installing .net

    Hello, i dont know if im on the correct place, but ive searched around and couldnt find where i could get some help. I had .net framework 1.1 installed on my windos, but the accidently the power at home was shuted down, and now an aplication that i use is having some problem, and when i execute it i get: "The application failed to intialize properly (0xc0000135). Click OK to terminate the application" and it closed itself. Ive tried to re-install .Net but im getting an error at the end. Its too fast but is something about Registring Entreprise and it says it fails. I downloaded and installed .Net 2.0 but it wont work with the aplication Thread moved to the correct ...Show All

  • Windows Forms Appearance

    How would I change the appearance of some controls in the windows form, such as turning the tabs color from the normal color to say a gradient green to white or change the buttons shape and color from a rectangle to a circle and the color from a solid to a gradient. That kind of thing. You will have to handle the Paint event or override the OnPaint method (in the case of subclassing). You can then use utility methods in the System.Windows.Forms.ControlPaint class to perform drawing and retrieval of colors to match how the currently running version of Windows draws certain aspects of the controls (like DrawBorder () and Dark ()). ...Show All

  • SQL Server Reinstall Sql Server Express After Developer Edition

    I had to uninstall SQl Server 2005 Developer Edition because of hardware requirements, and reinstall Express Edition download version. But SQL Server Database Services fails with this message: SQL Server Setup has determined that the following account properties are not specified: 'AGTACCOUNT' . Error Code: 28006. The first time I installed Express the flow of setup ended well without any message. How to act Thank you for the logs, they are revealing many details but the scenario still appears to be a mystery to me. Here is what I can gather from what you posted: You ran the self-extracting version of SQLEXPR.exe, which appears to be the RTM version. The extracted out to " ...Show All

  • Visual Studio Team System WSS (Windows sharepoint service) with SP2

    1. How can we make sure that we have WSS (Windows sharepoint service) installed correctly or configured correctly 2. Which port WSS generally use 3. When I tried to create web-site (vs 2005 .net), using HTTP system, it gives me following error. Error: "Unable to create the web 'http://localhost/chintan/TrialWebPages2'. Visual Web Developer does not support creating Web sites on a SharePoint Web server." Ur help is needed to understand what's going on and how can i resolve this problem. Hi, did you have another version of sharepoint installed like Microsoft Sharepoint Portal server Thanks, John ...Show All

  • Visual FoxPro Foxpro values for Excel constants?

    How can I set the value of the property ActiveSheet.EnableSelection in VFP to the Excel constant "xlUnlockedCells" I cannot find in internet any answer. I tried to set -4142,0,1,2... without luck. More generally, where can I find a constants-list in the web that includes also xlUnlockedCells Here I can't find it: http://fox.wikis.com/wc.dll Wiki~ExcelConstants~VFP Any help is really appreciated, thanks. You can look in Excel itself using an Object Browser, or the Object Browser inVFP, or in MSDN: http://msdn.microsoft.com/library/default.asp url=/library/en-us/vbaxl11/html/xlhowConstants_HV01049962.asp 'xlUnlockedCells' shows in the Excel Object Browser as value = 1 xlNoSelection ...Show All

  • Visual Basic Connection to a sql data base

    Could someone tell me where the mistake is in this code : Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim MaChaineConnection As String = "Integrated Security=True;User Instance=True;database=BaseDonnes;server=localhost\SQLEXPRESS" Dim MaConnection As New SqlConnection(MaChaineConnection) Dim Instruction As String = "insert into TableNom (Nom, Prenom) values ('aaaaa', 'bbbbb')" Dim MaCommande As New SqlCommand(Instruction) MaCommande.Connection = MaConnection MaConnection.Open() MaCommande.ExecuteNonQuery() MaConnection.Close() End Sub the error message is : sqlex ...Show All

  • Visual Studio 2008 (Pre-release) ImageBrush and texture size limit?

    Hi, I'm using a large image as an ImageBrush to texture map a 3d mesh. I've noticed that if the image size exceeds 2048 pixels in a given direction (say 4096 pixels), I start seeing tiling beyond the 2048th texel (i.e. it goes back to texel 0). Are ImageBrushes limited to the texture size supported by the video card If so, how can I determine that texture size limit in an XBAP Thanks, this forum is great. - Imad Hi, Imad. Is this on an NVidia card If so, this is a known bug that we are working with NVidia to resolve. To answer your other question: WPF does not expose a way to access the graphics card's caps. This is on purpose, as we actually try very hard to abstract our rendering layer away from ...Show All

  • Windows Forms RichTextbox bold

    hey, I am having trubble amkign the text in the richtextbox bold..I used this code: thisrichtextbox.SelectionFont.Bold = true ; but it gives me this error: Property or indexer 'System.Drawing.Font.Bold' cannot be assigned to -- it is read only Thanks:) ah ok. nevermind my reply then! :-) Take a look at the overloads of the Font constructor, that's the problem. thisrichtextbox.SelectionFont = new Font(thisrichtextbox.Font.FontFamily, this.Font.Size, FontStyle.Bold); ...Show All

  • Windows Forms How to store dataset to a table in the database. Please be specific. Urgent

    I have create the following datarow: _dtProjectQuestion.Columns.Add("ProjectQuestionNo"); _dtProjectQuestion.Columns.Add("ProjectQuestionType"); _dtProjectQuestion.Columns.Add("ProjectQuestionName"); _dtProjectQuestion.Columns.Add("ProjectQuestionLastModifiedDate"); _dtProjectQuestion.Columns.Add("ProjectQuestionDateFormat"); _dtProjectQuestion.Columns.Add("ProjectQuestionShortLabel"); _dtProjectQuestion.Columns.Add("ProjectQuestionLongLabel"); _dtProjectQuestion.Columns.Add("ProjectQuestionMessage"); _dtProjectQuestion.Columns.Add("ProjectQuestionMinAnswer"); _dtProjectQuestion.Columns.Add("ProjectQuestio ...Show All

  • Visual Basic Incorrect DLL Version being used for build

    Hello all, I'm have a problem using VS 2005 when I build the solution I get a error that says: System.IO.FileNotFoundException was unhandled by user code Message="Could not load file or assembly 'INBLK$NamedDataSets_SYSTEM, Version=1.0.2405.25931, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified." Source="INBLK$SystemClasses" StackTrace: at INBLK_SystemClasses.GetData.FormatDSP() at INBLK_SystemClasses.GetData.Fill() in F:\Development\Traffic Management Environment (TME)\InfoBlock Objects\System Objects\INBLK$SystemClasses\clsDataTransporter.vb:line 78 at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object ...Show All

  • Visual Studio Express Editions Win32 application error

      I'm trying to install Security Update for Internet Explorer (832894).  When I go to run the program I get the error message update\update.exe is not a valid Win 32 application.  What can I do to run this without this error message coming up   Is there a particular update I need to install or change any setting on my pc   wantowan2 wrote: Seems like the perfect place for it to me. I did a searck with this persons exact error and this is where I ended up, perfect. I said this was a strange place to post the message because this Forum is about the Visual C++ 2005 Express Edition and is not a likely place to obtain information about general Windows operations ...Show All

©2008 Software Development Network