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

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

Moody2006

Member List

likong
Kayda_SQL
Prabagarane
LonelyPixel
Dr Z
donkaiser
Wedgetail
David Grooms
Jon Braganza
Rizzlers
forrestcupp
bookysmell2004
Alinushka
swan_sgp
Okugops
Anto Jeno
sobo1
johnacs
Dr_dre
Abongs
Only Title

Moody2006's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. How can i obtain extra information from a File using Content importer?

    How can i obtain extra information from a File using Content importer Now i already have made a content importer for my ownfile format, that is ok because i se the importer to extract the texture Infromation from my file... But the problem Is that i have very valuable information in my file format in addition to the texture infromation, This is the code that i use to import the texture content from my files (jki Files):     /// <summary>     /// Importador de archivos JKI al XNA Content pipeline     /// </summary>     [ ContentImporter ( ".jki" , DisplayName = "Imagen De Multiples Frames JKI" , DefaultProcessor = "Procesador para arc ...Show All

  • Visual C# Barcode Scanner

    Please help me with code for interfacing to a barcode scanner on a ASP.NET webpage using C#. Regards Firstly you need a scanning device. Have you checked out the Symbol scanning API They are a bit flakey, but they can be brushed up. I have recently wrote a Scanning Class with some Interfaces to tie it to Forms that act to barcode scans. If you want it, let me know. Thanks Tryst ...Show All

  • Microsoft ISV Community Center Forums iexplore.exe - Application Error

    I get the following error message when I close my internet explorer. The instruction at "0x62304320" referenced memory at "0x62304320", The memory could not be "read". Click on OK to terminate that program. Any ideas what is causing this I don't use the Yahoo tool bar and I get a similar message when I close Ie 6.. "The instruction at "0x02653812" referenced memory at "0x0277bb2c". The memory could not be read. (All XP updates installed.) ...Show All

  • SQL Server Unable to access MSDB on Integration Services

    Hi all I have a little problem with my IS Server. I am using Windows Server 2003 64bit and IS 9.0.1399. I have two named instances for databases. I am able to connect to Intergration Services just with the Servername (no Instance Name) and I see the folders in there. When I try to open the MSDB Folder (under "Stored Packages") I get the following exeption: "Failed to retrieve data for this request ...." and Additional informations: "Login timeout expired ....." I am of corse administrator, so permission will be ok ... Any ideas Thanks for any comment!! Best regards Frank Uray See this post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=175893&SiteID=1 ...Show All

  • Visual C++ want reason behind the o/p

    when i run the following program in VC++ compiler #include <stdio.h> int main() { int a =1,b=2; printf( "%d " ,printf( "%d %d" ,a,b)); getchar(); } I get the o/p as 1 2 3.. can anybdy plz explain me why the 3rd value becomes 3 printf returns number of characters printed. Internal printf prints "1 2" and returns 3. External printf prints return value of internal printf - 3. ...Show All

  • Windows Forms Custom control, creating a border when the Auto scroll is on.

    I've created my own custom control, i'm trying to set the border using the ControlPaint class, however because of the scroll bar i have two problems. 1) When i scroll the border moves with it. (I think i could work this one out) 2) The border does not encompass the scroll bars. 3) The controls in my control seem to be above my border (something to do with z-order ) and so only part of the border display's Is there an easy answer to this Here is the code i've used (in the paint event) Graphics myGraphics = this .CreateGraphics(); ControlPaint .DrawBorder(myGraphics, new Rectangle (0,0, this .Width, this .Height), Color .Black, ButtonBorderStyle .Solid); myGraphics.Dispose(); ...Show All

  • Silverlight (formerly WPF/E) Is there any way to figure out the width of text in WPF/E?

    I've been trying to figure out a way to get the width of a TextBlock in WPF/E. <TextBlock x:Name="tickerText1" Canvas.Top="3" Canvas.Left="0" FontSize="12" Foreground="#FF5A5A5A" Text=" How wide am I " /> I dynamically change the text within the textblock using Javascript, but I have to get the width so I can append things to the end. I have seen comments in the WPF world to use Graphics.MeasureString, but: 1) That is not a static method. 2) I don't have access to a PaintEventArgs since WPF/E does not have a CLR yet. "The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e , which is a parameter of the Paint event handler.& ...Show All

  • SQL Server error: must declare the scalar variable @time_id

    Hi, I used data insert command in the data adapter. Also i specified the parameters to use in the insert. One of those is @time_id. dim ds as new dataset dim da as new odbc.odbcdataadapter da.selectcommand = new odbc.odbccommand("select * from tb1", cn) da.insertcommand = new odbc.odbccommand("insert into (time_id, name, address) values (@time_id, @name, @address) with da.insertcommand.parameters .add("@time_id, odbc.odbcnvarchar, 3, "time_id") .add("@name, odbc.odbcnvarchar, 10, "name") .add("@address, odbc.odbcnvarchar, 10, "address") end with da.fill(dataset, "tb1") bindingsource1.datasource = dataset bindingsource1.datamem ...Show All

  • .NET Development Accessing user information from client

    Hi, I want to acces to user information from my client code, in concret I want to acces to the USER_LOGON value. Supose I have the WhoAmI.aspx page: <%Response.Write(Request.ServerVariables["LOGON_USER"]);%> It will return my domain and user name, for instance: AD/JONCINS The question is: How could I do that using only Javascript and doing nothing with c# and ServerVariables Is there a way to obtain the "LOGON_USER" only from client side Thanks in advance This will work with the drawback that the user has to have security settings set to either enable or prompt for ActiveX controls and that they allow it to run but it is probably the best you can do with only client side script. ...Show All

  • .NET Development C# xpathnavigator: how to retrieve element names

    Hello, At the risk of being criticized for not comprehending reference materials I will ask one last question, then I’m going to take the brute force method and write a parsing routine of my own in C# since I can’t seem to get XSLT or the built-in C# features for processing XML to work to my satisfaction. After reading and re-reading all the information you people have provided I’ve decided to use xpathnavigator in my C# program. Here’s some code: string XMLquery = @"/df:xtvd/df:programs/df:program[df:title='NOW']/df:title" ; try { XPathExpression query = xPath.Compile(XMLquery); XmlNamespaceManager manager = new XmlNamespaceManager (xPath.NameTable); ...Show All

  • SharePoint Products and Technologies xp files & transfer settings problem

    Hi, I had a problem with my PC and I basically had to reformat and then reinstall xp and the other pre-installed software. I used the files and transfer settings wizard to copy my stuff onto the desktop. I then burnt the dat files onto 3 dvds ready to transfer after the computer was reformatted etc. Anyway, the reformat and reinstallation was all smooth. I opened up the transfer files & settings to copy the old stuff to my new pc. However it keeps coming up with the following: "The location you specified does not contain stored information. Please type a valid path into the edit box. If you entered a path to a folder on a removable disk, the disk must be in the drive." I have tried copying the files into the USMT. ...Show All

  • Windows Forms SelectedText but not Property!

    Hello, How can I get the selected text on Windows anywhere. please dont tell me textbox.selectedtext or textboxbase stuff. I want to get the selectedtext on windows anywhere even desktop, even when I renaming a file even on browser page even inside any programs textbox etc. etc. API list does have a selectedtext or similar thing or is there any hook tech to accomplish this goal. thanks. You can have a look at EM_GETSEL/EM_EXGETSEL messages in the platform SDK, with that and WM_GETTEXT you should be able to get selected text on any edit/richedit control. More and more application are starting to use windowless controls as the number of windows are limited. IE7 is example of one application that use ...Show All

  • SQL Server Debugging SQL Server 2005 Stored Proc with Visual Studio 2005

    Hello, we have a SQL server 2005 with Visual studio Prof. 2005 in the employment. The debuggers function only in Visual studio correctly, as long as no code on the SQL server must be implemented. If a BREAK POINT in a Stored Procedure is set, this is not activated, since this cannot be bound. Does someone know, what it lies and can like one it eliminate Thank you for your assistance in advance. Yours sincerely Big_Ben_31 I will have to ask the obvious question about your setup. Have you ensured that it is complete The new topics in BOL and MSDN describe the steps in details including troubleshooting ones. Please start with the links below:   http://msdn2.microsoft.com/en-us/library/kkyhd4yb.as ...Show All

  • Windows Live Developer Forums How to iterate an ArrayOfAdCenterAccount and/or an ArrayOfAdCenterCampaign?

    Hi there, I am wondering how I can iterate such types of objects. I need to get all my accounts and for each of those accounts, retrieve all the campaigns and ask for a keyword performance report. It is nice to have get an ArrayOfAdCenterAccount but I don't see any method to get the size of this array or how I can instanciate an iterator over this array in order to get all the account ids. The same for the ArrayOfAddCenterCampaign. From an AdCenterAccount, I can retrieve the ArrayOfAddCenterCampaign. But for getting a keyword performance report of these campaigns, I have specify an ArrayOfInt with the campaign ids. Once again, how do I instanciate an ArrayOfInt from the ArrayOfAdCenterCampaign Did I miss a point or are such methods not a ...Show All

  • SQL Server Why is TOP executed last?

    Hi. I have a complex SELECT query with a few joins and some millions of rows to deal with. However, I only need one (and any) result, so I added a TOP 1 clause. When I look at the query plan with Query Analyser, I see the TOP action last. The impression I get is that the query is analysing the whole of the results before poping me the first. Is this right What I'd expect it to do is to stop as soon as it has a single result. Is it possible to enforce this type of behavior Thanks in advance Carlos GlennAlanBerry wrote: If you don't really care what you get back, you can try using TABLESAMPLE to dramatically reduce the required IO. Actually, I do care what I get b ...Show All

©2008 Software Development Network