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

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

tom_7

Member List

justinmagaram
hypo
dj1s
vedat sivri
Ed209
AndersBank
AvenueStuart
Lita123
jtallard
gokce
AshishMalhotra
Raja Pratap
Martin Hart Turner
TMF
BipinP
AVVIT
Pockey
Thomas René Sidor
redshock
keopsito
Only Title

tom_7's Q&A profile

  • SharePoint Products and Technologies Object reference not set to an instance of an object error.

    i've installed the VSeWSS.msi on VS 2005, i'm using SPS 2007, i'm developing on my workstation in C#, i've added the Mircosoft.Sharepointserver dll reference to my project but i still can't deploy a very basic webpart. i get the "Object reference not set to an instance of an object" error but there's no reference to a line, column, project or anyhting. very frustrating. any suggestions/links whould be appreciated. I removed From the top of my web part and it worked!!!! XmlRoot (Namespace = "namespace" ) ...Show All

  • SQL Server Drill to detail in ProClarity

    Hi, This is from a previous post I had put, http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=973310&SiteID=1 ProClarity gives a "Drill-To-Detail" by default. When you click on that it shows the key columns for the fact tables. It uses Drillthrough for this. I tried defining drillthrough actions in ssas 2005, but they come up seperately as actions in proclarity. The "Drill-To-Detail" is still displayed on right-click at proclarity. The actions are working in ssas 2005, but according to the definition, if a drillthrough is executed, if no return columns are specified, then it picks the return columns from the action that resembles similar query target. This does not seem to work for me! if nothi ...Show All

  • Smart Device Development Crash when hosting Windows Media Player ver 10.3 ActiveX control (T-Mobile DASH)

    I am using Alex Feinman's Compact Framework ActiveX host (as described in this MSDN article ). It works great when hosting Media Player versions 10.1 and 10.2, that are available on most WM5 Pocket PCs and Smartphones. For some reason, when trying to instantiate the WMP control on a T-Mobile DASH smartphone, the device UI hangs (every single running application including the home screen). The only difference that I found is that DASH uses a newer version of Media Player -10.3 (mine is build 15097). I was able to trace the problem to a call to InPlaceActivate() -> DoVerb( -5 ....) during the control creation process ( called from TransitionUpTo(..) in AxHost.cs) . Oddly enough, commenting the call to InPlaceActivate(), allows the ...Show All

  • SQL Server How do you Load .JPG Files into a image datatype column

    I have been fighting with this all day. If you can point me in the right direction I'd appreiciate it. I need to load about 500 jpg files into a table. The table has 3 columns an "ID" , "Filename" which has the filename of the jpg in it already, but not the unc path, and a ("Photo" Image Datatype) column which is not populated yet. I need to store the Image file in the photo field so that I can run reports in reporting services and so on and so forth. I am not sure how to complete this task. ...Show All

  • SQL Server the data is missing when browsing the cube

    Hello, I use visual studio 2005 to build a cube through analysis services project. When I browse the cube, the data is gone. For example, the dimensions are product names and dates, and the measure is the price. When I browse the cube, I can see the column names and row names, which are dates and product names, but I could not see the price. They are all empty. I am kinda of confused, why does the data gone. I check the tables I read data from, the price are there. Somehow, when I read the price data in as measure, it is gone. Before browse the cube, I defined semiadditive behavior to none for all the measures. and then I process the cube successfully. I am stuck here, kinda of confused. Any suggestion Thank you for your help. Aurora ...Show All

  • Windows Forms Text field/box

    Task: I have a text box with maxlength property set to 0. What I want to accomplish is to determine whether an overfilling of the text box has occured. Example if you enter a text beyond the visual space or width of the textbox. Example: TextBox _txt = new TextBox(); _txt.MaxLength = 0; _txt.Text = "Yandisa Mtyide has been developing in C# for the last 10 months"; _txt.Width = 60; //Basically the text will overfill the text box, so if this occurs I want to notify the user that the textbox has been overfilled Thank you Is your question answered Please mark the post that provided you with the answer as answered. ...Show All

  • .NET Development How do I specify the text format of Excel data added with "INSERT INTO"

    My program is adding new data to an existing worksheet fine (using "INSERT INTO") but unfortunately it seems to be using the text format of my header which is "bold". Using VB.net, how do I get it to insert with out the bold text style. BTW, VB newbie, so code samples would be very helpful. Dim Conn1 As New System.Data.OleDb.OleDbConnection(sConnectionString) Conn1.Open() Dim cmd As New System.Data.OleDb.OleDbCommand cmd.Connection = Conn1 sPlant = String .Concat(sPlant, "$") If String .Compare(sFolder, "pending", True ) = 0 Then cmd.CommandText = String .Format("INSERT INTO [{0}] (Project, Pending) VALUES(@au_file,@au_date)", sPlant) Else ...Show All

  • SQL Server Integrate more than one SSIS packages into one package

    Hi I'm new to SSIS field. I'm importing data from flat files to sql server 2005 through SSIS packages. I have around 30 packages which transfers data from flat files to corresponding database tables. I want a single package that will run all the 30 packages by running that single package. Like in a single stored procedure we can run multiple stored procedure, I want the same solutions for my packages. Is there any method which can solve the above issue Please kindly guide me . Its urgent. please reply soon. Thanks in advance. Hello; Package configuration not working. In my project I 've one Mother package and 10 child packages.I've added the package c ...Show All

  • Visual C++ Use of __m128i as two 64 bits integers

    Hi, I'm trying to write an x64 implementation - targeted at AMD64 - of the lock-free queue designed by messrs Maged M. Michael and Michael L. Scott (go to http://www.cs.rochester.edu/research/synchronization/pseudocode/queues.html ) and referenced in http://www.devx.com/amd/Article/33290/1763 . The technique involves wrapping up pointers to the 'next' node in the singly-linked list as a pointer and a version. As pushes and pops occur, the algorithm constantly checks the version of either the tail or head node (when pushing/popping respectively) whilst it attempts to make modifications.  If the versions change during the push or the pop (meaning another thread has just completed a change), the thread restarts th ...Show All

  • Visual Basic tab ASCII Character Code

    curious what the ASCII Character Code for "tab" would be, I have a text file that is a database table dump and every field is seperated by a tab and need to know what the ASCII character code for it is so I can write a little script to interpret the text file. Thanks in advance. Mitch I trust it didn't take seven and a half million years to come up with that one Hans Obviously some people round here aren't Douglas Adams fans. ...Show All

  • .NET Development security

    how to provide security for the assemblies. pls give me the example with explanation. Can you please specify what kind of security you are asking for. .net defined lots of security model. U can use Code Access Secuirty. U can use windows security blah blah. ...Show All

  • Smart Device Development VS2005 Deploy to CF Card

    I have a VS2005 Deployment Project and want to install myApp to the \CF Card\myApp directory. I tried adding a Custom Folder to my Deployment Project, but it won't let me have the "\" character in the Folder name. How do I do install to the CF Card using a Deployment Project Simply create custom folder called "CF Card", then create folder called "myApp" in first folder and put all your files into that folder. ...Show All

  • .NET Development Cannot have a DOCTYPE declaration outside of a prolog. Error processing resource

    Hi Yes, it's another one of these - sorry but I'm fairly new to this. I'm getting the following error, when trying to display some XML code on a browser and can't see where I'm going wrong: The XML page cannot be displayed Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later. -------------------------------------------------------------------------------- Cannot have a DOCTYPE declaration outside of a prolog. Error processing resource 'http://localhost:2999/Exam/Exam.aspx'. L... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "&.. I'm using t ...Show All

  • Visual Studio Team System Getting labeled source codes from VSS

    Hi, I am maintaining source codes for my porject. In the project there are several sub projects/folders. I am checking in source codes to different projects for the main folder. Each release, I am putting lables. Whenever I want to get a perticular file for that labled file I will get it, but I am not able get entire projects files checked into for that perticular lable. Please help me ...Show All

  • SQL Server table design question

    I am probably posting this question in the wrong area. If so, please let me know where to post this question. currently I have three tables and I will create more if needed to accomplish my task. My challenge is that I do not know how to start creating the relationships. ENTITY .ENTITY_KEY .ENTITY_NAME .ENTITY_TYPE ("P" PERSON OR "O" ORGANIZATION) ENTITY_FOR .ENTITY_FOR_KEY .ENTITY_KEY .CONTACT_KEY .ORIGINATION (CLIENT OR IN-HOUSE) .ORIGINATION_DATE CONTACT .CONTACT_KEY .CONTACT_TYPE (PROVIDER OR CONTACT PERSON) .FNAME .LNAME I am trying to keep a normlize design. Here is what I am trying to accomplish. An entity can be a person or an organization. This entity can have multiple person members. This entity c ...Show All

©2008 Software Development Network