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

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

BlueBeetle

Member List

BALA SINGAM - My
mjobbe
harrrysh
Rweasel6
Docpro777
tickling
voevoda
Seppe001
ivanchain
JPC16
qjs
Xiaobo Gu
Musafir
manasia
AlucardHellSing
M. Shariq Muzaffar
Shaantu
Awais786
Pauly C
KarimRadi
Only Title

BlueBeetle's Q&A profile

  • Visual Studio Team System DisplayMessage_START:Error 32000

    i have error that Error 32000.The Commandline '"C:\Program Files\Microsoft Visual Studio 2005 Team Foundation Server\Tools\TfsAdminUtil.exe" Setup "xx\tfsservice" "xx" "TfsWorkItemTracking;TfsWorkItemTrackingAttachments;TfsVersionControl;TfsActivityLogging;TfsBuild;TfsIntegration"' returned non-zero value: -1. during setup tfs. i checked that service account password is correct pls help thanks.. i had use Administration acount instead of TFSService and it works finally.. but i dont understand why TFSService acount had not work.. thanks.. ...Show All

  • SQL Server Cannot convert between unicode and non-unicode string data type

    HI. I'm having this problem. I use Visual Studio's, integration project to load XML file into SQL Server. In the XML file, i have defined collumns as string. When i try to load XML file with parts defined in scheme as string, i get an error "cannot convert between unicode and non-unicode string data type. Destinated collumns in SQL are defined as varchar and char. Thanks for help Tim/Katrina, that all sounds great. But when I change the External Columns to DT_STR, it doesn't save my changes!!!! I'll go right back into my OLE DB Destination, and whamo, it changes it back to DT_WSTR. Any ideas I'm running: Microsoft Visual Studio 2005 Version 8.0.50727.42 (RTM.050727-4200) Micr ...Show All

  • Visual Studio Tools for Office COM Shim Addin not working in Outlook with Application Verifier

    I've created a managed extension addin for Outlook in C#, and then used the COM Shim Wizard to create the unmanaged shim. I registered the dlls, and the addin loads in Outlook fine. The problem is that when I run Outlook using the Application Verifier tool (with the "Basics" options enabled), I get a first chance exception (see stack trace dump) Both the managed extension Addin and the COM Shim were created from the VS Wizards and compiled, with no code modification. Does anyone know about this problem, and its posible solution/workaround From Application Verifier Log: < xml version="1.0" encoding="UTF-8" standalone="no" > <avrf:logfile xmlns:avrf="Application Verifier"> &l ...Show All

  • .NET Development In javascript ,is there any function to detect to see if the network connection is conected or not?

    In javascript ,is there any function to detect to see if the network connection is conected or not Can you give me a example Thanks ...Show All

  • SQL Server Cannot create linked server

    I cannot create a linked to a MySql database in Enterprise Manager. Here is the relevant info: Trying to create a linked server on a SQL Server 2000 Standard Edition Service Pack 4 running on a Windows 2000 Standard Edition server. The MySQL server is running on Red Hat - not sure of the DB or OS version. However the DSN I created connects to the server correctly. I can connect using any of the MySQL tools. I am using the latest ODBC MySQL drive 3.51...Here is the Provider string I am using... DRIVER={MySQL ODBC 3.51 Driver} ;SERVER=192.168.1.99;DATABASE=bug_tracker; USER=UserID; PASSWORD=Password; OPTION=3 I have also tried using a System DSN to connect with, but that does not work either. It appears to create the linked se ...Show All

  • SQL Server using c# for reporting services

    Hi everyone, It will be a newbie question but I couldn't find any helpful source on any sql2005 sites, so here we go: I've already created a few reports, deployed and can see it on the uploaded site. However, there is no C# code is involved whatsoever. I am trying to find the behind code all I see is XML... How do I use C# with reporting Where do I start Do I first create a report project or C# project What do I do I appreciate any help. If you can refer me to an article that's fine too. Thanks, Iggy YOu create a report project as well as a C# (class library) project which contains the functionality which you want to call. Then you can reference the assembly (by navigating to the properties of ...Show All

  • Visual Basic Graphing data?

    Is there a way to take some data (say an array of integers) and display it in line graph form, defining the labels and axis manually Hi, Have a look at: - http://zedgraph.org/wiki/index.php title=Main_Page It is very powerful and very easy to use, just have a look at the visual basic examples,if you have any problems please let me know. Andy ...Show All

  • SQL Server SQL reporting - An internal error occurred on the report server. See the error log for more details. (rsInternalError)

    I have created an RDL file programatically. When I execute the code I get the error as mentioned below: Error: Sub report cannot be shown. An internal error occurred on the report server. See the error log for more details. (rsInternalError) When I copy and paste the code of RDL file into new RDL file and try to preview the output I get correct result. Note: The new RDL file does not give any error if the output is seen using preview tab but it gives the error only when executed from report viewer or from internet explorer. Any Suggestion/feedback is highly appreciated. Thank You. The code of the sample RDL is shown below: < xml version="1.0" encoding="utf-8" > <Report xmlns=" http://schemas.microsoft.co ...Show All

  • Visual Studio Express Editions How to refer to a query...

    Hi, I created a new SQL database, the dataset was created and connects fine and I can get data from the .Fill() function no problem. I've created a query using the Database Explorer/Query Designer. It returns the data I want but I cannot seem to understand how to save it When I create a new one the query name goes up by one "Query6", but nothing is showing up in the Database Explorer How do you save a query I've also created a query in the DataSet Designer. It creates a QueriesTableAdapter and adds my newly created query in there. How do you refer to this query I've tried myDataGridView.DataSource = myDataSet....... but I cannot seem to find a way to reference my query. Thank you in advance, lushdog ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Rotating an entity problems - (Not camera)

    Hi, I'm trying to create a rotate(float pitch,float yaw,float roll) function for my entity class, (The camera one works fine) but despite it working sort of, the model locks up at certain angles(I.e becomes very stiff and hard to rotate, like gimble lock but worse) Here's the function in question [code] public void Rotate( Vector3 Rotation) { Matrix m1 = Matrix .CreateRotationX( MathHelper .ToRadians(Rotation.X)); Matrix m2 = Matrix .CreateRotationY( MathHelper .ToRadians(Rotation.Y)); Matrix m3 = Matrix .CreateRotationZ( MathHelper .ToRadians(Rotation.Z)); LocalRotation = m2 * m3 * m1;   Update(); } [/code]   I've tried every order possible, doesn't make any differenc ...Show All

  • SQL Server Deadlock at trigger

    a trigger need to insert or update record at the other table in high traffic environments however, the deadlock happens; ie, a trigger running twice at the same time want to need to insert record at the table. i trid to change isolation as SERIALIZABLE or REPEATABLE , but i cannot solve the problem. i guess the "while loop" affects the result because i try to cancel the loop and execute smoothly. How to solve the deadlock Thx ----------------------------- i used the following commands to change isolation level: SET TRANSACTION ISOLATION LEVEL SERIALIZABLE begin transaction commit transaction ----------------------------- the code are as follows: declare setskuCursor cursor local static for select item, qua ...Show All

  • Software Development for Windows Vista Installer writing values to HKEY_LOCAL_MACHINE\Software

    Hi all, I'm currently taking responsibility for coordinating our commercial software to be "Vista Certified". I've downloaded and looked at the 'Requirements for the Windows Vista Logo Program for Software' document, but still am unsure about whether we can or cannot write and read information to HKEY_LOCAL_MACHINE\Software. At the moment our software stores license information (serial number) to this location. Because it's Adminstrators who are usually installing our software it's not feasible (i think) to write this information to the HKEY_CURRENT_USER\Software location. Can someone please lend some advice to me about whether we will run into problems if we continue to use HKEY_LOCAL_MACHINE\Software to store our licen ...Show All

  • Visual Studio Express Editions Countdown Timer!

    Hi! I'm trying to make a countdown timer similar to that of the one in the TV Program "Lost" (Counts down each minute without displaying a change in seconds, i.e. 108 00 [1 minute later] 107 00, until it gets down to 3 minutes when it counts down like normal i.e. 03 00, 02 59, 02 58 etc, also during the normal countdown with seconds a sound is played) I'm really stuck and would appreciate any help on the matter, i know it is something to do with the Timer, but don't know how to use it. A code sample would really help Many Thanks, Jamie Better approach:   'Globally declare a timespan: Dim theStartTime as new TimeSpan(DateTime.Now.Hour, DateTime.Now.Minute, Da ...Show All

  • Smart Device Development Arabic Characters on PPC 2003 Emulator ...

    Hi, I've wrote some functions and tools for displaying arabic words on ppc device ... Now, I want to know is it possible to displaying arabic words on ppc Emulator ! I Simply copied the font that i wanted to work with it on Emulator but i just can see Squares on screen !! Is it possible ! If Yes so what's my wrong ! Regards, Hadi Dear Hadi, Could you kindly let me know if the issue mentioned in this thread was resolved, if yes how was it. I'm struck in a similar situation. TIA, Siraj ...Show All

  • Visual Basic Syncing a clock to the System time

    I am writing a clock program that is getting the system time using a timer. I have noticed that no matter what I have the interval set to, it cannot adjust my clock evenly on the second precision with the system clock(via the system tray clock). My timer contains the following code: Dim datime As String datime = Format(Now, "HH:mm.ss") Label1.Text = datime I have seen other clock programs that can advance the second evenly with the system clock. Is there a better way to sync the timer to the system clock you have to remember that there maybe a slight delay as the system has to "tick" all other subscribers too which can cause this minor delay. I guess you could "cheat" and add 1 extra second. ...Show All

©2008 Software Development Network