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

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

pc_bond

Member List

soundman32
Duane Haas
PeterTPeterT
Harry Pressman
Gagand
valentin_lv
geliser131
AntonioP
Robert Gregory Garfinkle
cybertaz69
Mario Almeida
Seanie
saffy_in_aus
Mafti
Gagan Rajpal
loofloof
urz
Luis Esteban Valencia Muñoz
jgwufgator
Jacco Mintjes
Only Title

pc_bond's Q&A profile

  • SQL Server running stored proc with parameter

    hi, im getting an error when i run the stored proc with a string parameter in execute sql task object. this is the only code i have: exec sp_udt_keymaint 'table1' I also set the 'Isstoredprocedure' in the properties as 'True' though, when you edit the execute sql task object, i can see that this parameter is disabled. How do i do this right cherrie Your best bet is to use a .NET provider. Judging by your procedure name, you're running a stored procedure on SQL Server. Then, set your SQLStatement to the name of your stored proc (dbo.sp_udt_keymaint). Add the parameter (@TableName, the @ symbol is required) in the Parameter Mappings tab and map the parameter to a user-defined variable. ...Show All

  • SQL Server How to execute multiple queries in ssis?

    Hi there, I am new to ssis.I need to execute multiple queries to update number of tables in sqlserver.Pleasesuggest me the right way to do this. Thanks in Advance. Regards Vinod Vinodk wrote: Hi there, I am new to ssis.I need to execute multiple queries to update number of tables in sqlserver.Pleasesuggest me the right way to do this. Thanks in Advance. Regards Vinod Use multiple Execute SQL Tasks. -Jamie ...Show All

  • Gadgets Can someone test my gadget please?

    I posted my gadget a couple weeks ago and it has gotten a good number of downloads (~1500 atm) but mostly negative response. I suspect the problem is that I developed and tested this gadget on Vista RTM, but the Gallery only lets you choose "RC1" as the newest compatibility level (stupid ). I have not had any problems loading into the Sidebar on any RTM machine. What would really help me is to get a few people try to load it up and make sure it is working properly under a variety of environments (RC1, RC2, Beta, RTM, whatever), so I can figure out what the issue is that people are having. You won't be able to test the full functionality of the gadget because it requires you to have a particular type of webcam to stream video. ...Show All

  • Visual Basic filling a bitvector32 in a loop

    Dear all, I can fill a bitvector32 like this: Dim InBytes As Int32 dim i for i = 1 to 1000000 InBytes = i 'for example Dim InBitVector As New System.Collections.Specialized.BitVector32(InBytes) next i and then I can read out the individual bits (need this for a graphics conversion). Problem: this gets VERY slow, and I trailed that to the Dim InBitVector statement. Is there ANY way to assign an Int32 number to the InBitVector WITHOUT using the dim statement Thanks, Kees I think this is what you want. Private Function BuildUint( ByVal Input As Integer ) As UInt32 Dim Out As UInt32 If (Input And &H20 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. beginners tutorials

    Hi Where is the best place to find beginners tutorials in xna. thank you http://www.xnadevelopment.com - since George won't pimp his site What It's in his sig!! ...Show All

  • Gadgets How can I get a System.Shell.Folder by path

    The System.Shell.Folder.parse does not work. Thanks! ...Show All

  • SQL Server Hide some columns in Matrix but not in subtotal

    Hi all, I would like a matrix that look like this: 2006/01 2006/02 2006/03 Total % % % % Amount Amount Class. BU1 98,82% 78,53% 88,12% 88,49% € 217.763.099,50 € 207.328.766,75 BU2 64,98% 32,53% 92,19% 63,23% 5.093.781.522,65 € € 287.731.766,75 BU3 74,71% 45,78% 78,69% 66,39% € 847.871.349,50 € 819.123.124,75 I want detailed subtotals but I don't want the "Amount" and "Amount Class." values in the details of my Matrix. I've not found other w ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. New Farseer Physics Engine Update

    I've updated some of the Farseer Physics Demos for the new XNA Beta 2.  I've also added a new Demo showing of some simple Joint functionality. There are misc other new things in the Engine, but I will be doing a more formal release in the near future and will wait till then to itemize the new stuff. You can get the latest release here: http://www.codeplex.com/Release/ProjectReleases.aspx ProjectName=FarseerPhysics Have fun and let me know what you think. -Jeff Weber Wow, Very nice, your engie is fantastic, and XNA framework speed has improved vastly!!! Well done, Question, could the 2d routines be moved to 3d ie using Vector3 as opposed to vector2 ... Tridex .... ...Show All

  • Windows Forms ListBox Help

    Sorry I accidently posted this already in the wrong forum Visual C# IDE. ... I have a ListBox who's contents change frequently. When they do I want the focus and selected item to be at the top. Heres my problem. When the contents change I call List.SelectedIndex=0; This causes the first item to change color as if it is selected. If the user presses down, however, instead of moving to the second item, it now "focuses" the first one (draws the dotted focus rectangle around it). Pressing down a second time goes to the second item and pressing it again, goes to the third as expected. The problem is I want the first item to be selected *and* focused so that when the user presses down for the first time it moves him/her to th ...Show All

  • Visual Studio Express Editions No symbols loaded.

    [code]'My First Project 1.exe': Loaded 'C:\Documents and Settings\Cody\My Documents\Visual Studio 2005\Projects\My First Project 1\debug\My First Project 1.exe', Symbols loaded. 'My First Project 1.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', No symbols loaded. 'My First Project 1.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', No symbols loaded. Debugger:: An unhandled non-continuable STATUS_DLL_NOT_FOUND exception was thrown during process load The program '[5080] My First Project 1.exe: Native' has exited with code -1073741515 (0xc0000135).[/code] Can anyone tell me whats wrong Hello world, j/k I'm a programming student having so many problems with VC++ .NET that it's interferring with programming proj ...Show All

  • Visual Studio 2008 (Pre-release) Problem loading image into ImageObject (WPF)....

    I have an ObeservableCollection of images... Then I add an image to that collection. The image is fetched from the network (internet) and this is sometimes slow... What I tried to achieve is to put an animated gif (stored on a local disk) as the image, and only the image is fetched from the internet to "sustitute" the animated gif with the real image.... My question is, once I add an object to the observable collection, how can I notify the WPF that the object was changed and that it needs to refresh that image object. Also how can I determine that the image was fetched, basically, that it is loaded into memory Thanks, M.V. Also, is it possible to put an animated gif into the image obje ...Show All

  • Visual Studio Express Editions problem with assigning values to cells in excel

    Hi. VB don't want to asign values to excel cells, this is my code: Dim oExcel As New Excel._ExcelApplication Dim oWorkbook As Excel.Workbook = oExcel.Workbooks.add oExcel.Visible = True oWorkbook.Worksheets.Add() Dim xlws As Excel.Worksheet = oExcel.oWorkbook.Worksheets.Item(1) xlws.Cells(1, 2) = "Number" Please help me!!! Any sugestions now everything is fine but when I want to create that excel file error apperas in this line: Dim oWorkbook As Excel.Workbooks = oExcel.Workbooks.add ...Show All

  • Windows Live Developer Forums Buddyscript SDK request <<Please>>

    ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA on IRC

    Join us on IRC in #XNA on efnet We are growing a community where people can get real time help on their issues and work on projects together! Thanks, Ziggy So we have EFNET: #manageddx: few users, however Tom Miller does chime in from time to time #xna: Seems like some MSDN forum regulars but not much chatting while I was there AFTERNET: #mdxinfo: the most users, the most chat, and often off topic. Lots of gamedev.net folk ...Show All

  • Visual Studio Express Editions TextBox and ListBox hlp me ?

    Hi How can i add in listbox from textbox example we have 1)textbox 2)listbox if you put in textbox (A,Z) will be add in ListBox and if You click button "save" will be save! Thank you! to add items into a listbox: theListBox.Items.Add( item ) so from a textbox: theListBox.Items.Add(theTextBox.Text) does this help ...Show All

©2008 Software Development Network