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

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

rjjhome

Member List

Voodoo45
TCK
cyberjoe2
New user to SQl 2005
bheybi
BobP - BIM
CJohnson
SweptSquash
SharpRan
laker_42
Kfir Dadosh
KingKoo
zort15
HMote
Damian Tran
Jan Drenthen
Biju S Melayil
bkohler
chxfryer
Chimme
Only Title

rjjhome's Q&A profile

  • Visual Studio Tools for Office Excel Cell Format Behavior

    Hi all!! Me one more time... Well I haven't see before this behavior, I have an Excel sheet that recives data from a Database, of course with VSTO 2005, some of this data are Excel's formulas, well if the cell is formated as text it don't uses the formula and no calc is performed, but if the cell is formatted as general it works well, the question here is: I'm using C# with an Excel SmartDoc, when I put the database value on the cell I'm changing the NumberFormat property to "General", but when I review the cell's format it has no change... Someone has any idea Francisco, you probably need to supply a bit more context. I've just tried your exact code listed above, and it works fine for me, every time. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA without the content pipeline

    Hi I saw from shawns blog that the content pipeline will not be included in the XNA beta 30 aug. Isn't this severly crippling the package. The conent pipeline seems to be so tightly coupled with the design of XNA that you might as well delay the whole launch. But I might be to pesimistic here What is really included in the first release Regards Joachim It seems increasingly like there will be no interim beta release including the content pipeline. That seems like a pretty silly situation since you guys keep mentioning that part of the point of the beta is to get developer feedback and if we don't have access to the content pipeline (which is a major portion of the framework and arguably the ...Show All

  • Software Development for Windows Vista The problem of SetTimer, MsgProc function cannot detect the WM_TIMER uMsg

    Hi i have some problem to use the settimer() function, i don't know what wrong with the code, because it didn't work. My coursework is develop a game by using the Directx, and my game have a 60 second time limit, so i used SetTimer() to do it, but not working .   Wish anyone could help me. declared timer at the global #define Timer 16   i called the settimer function at the  main function INT WINAPI WinMain( HINSTANCE, HINSTANCE, LPSTR, int){ xxxxxxx xxxx SetTimer(hwnd, Timer, 1000, NULL); xxxx xxx   }   then the "Timer" appeared at the MsgProc function agains, i put a few break point  like below, but the program didn't run throw these part, I thi ...Show All

  • Visual Basic How to set default value for hidden column in a datagridview?

    I have a datagridview with two hidden columns, the value are coming from another form, like a select criteria, but when i need to add a new row, how could I set the value to those hidden column cici ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. fx problem ?

    Hi all, I has few fx effect problem. Hope somebody help. Q1. How to move texture uv with fx Q2. How to create smooth effect Please give to some suggestion about create smooth effect with fx. Best Regards, Q1. How to move texture uv with fx If you're using a vertex or pixel shader then the UV texture coordinate is just a numerical input - you can manipulate it (move/scale/distort..) as you see fit. The only potential complication is you can run into dependent reads. Q2. How to create smooth effect Please give to some suggestion about create smooth effect with fx. You'll need to provide a lot more information about what you want. A smooth effect could be various forms of shading (D3D will gi ...Show All

  • Visual Studio 2008 (Pre-release) .Net Remoting two times faster than WCF!

    In our healthcare enterprise multitier application the .Net Remoting transports are two times faster then WCF(we have plugable client/server transports): Measuring results for the same couple of client server requests: -> Tcp Remoting: 3.4 seconds -> Http Remoting (IIS-Hosted): 3.5 seconds -> Tcp WCF: 6.5 seconds -> Http WCF (IIS-Hosted): 7.3 seconds -> Http WCF (IIS-Hosted) with MTOM: 10.3 seconds Security: We just use authentication by NTLM Serialization: We use the NetDataContractSerializer, and not the DataContractSerializer (RPC style) Can WCF be tuned to be as fast as remoting The use of MTOM which replaces text by binary data makes the communication slower. Why ...Show All

  • Visual Studio 2008 (Pre-release) Text thumbnails & zoom

    Hi everyone out there. I wanted to know if there is native support in WPF for scaling a text file, so that can I quickly get a thumbnail with the general text structure, and even support for using that visual representation like a regular image (e.g. rotate it, fade it away, etc). Thx in advance, Alan I guess I would like to manipulate it as a text (i.e. TextBlock) all along the way. Can I apply effects such as animation to a TextBlock Cheers, Alan ...Show All

  • Visual Studio Express Editions my web appliation don't run in the windows server 2003?

    Hello everyone: I have a web application,it is not runing in the windows server 2003.when you click the button in the webform,the webform have no action.when i remove the validating control ,the application is runing good at the windows server 2003 i don't want to remove the all validating controls .my application is written by vb.net 2003 in windows xp. please help me. my problem was solved! find the file in this directory: % WindowsDirectory % \Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe on command line: runing:aspnet_regiis.exe -c,the problem will be solved. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Any other parameter of EffectEdit.exe ?

    After read the HLSL workshop in DirectX c++ document. I found Effectedit is a very good tool to learn HLSL. In the workshop .fx file, We can see that there is a string parameter "Environment" to set the Environment Map parameter.But I can not find any information about string parameter "Environment". In the help file, there are only information about string parameter "BIMG","XFile". I want to know : are there any other "parameter" of EffectEdit.exe PS: In the latest SDK ,there is not "EffectEdit.exe". can open <> can work. Please try to open the fx files of HLSL WorkShop. You can not do as the HLSL Workshop tutorial ...Show All

  • SQL Server Full Justify Doesn't Work - RS 2005

    The RS2005 full justification icon seems to be grayed out and doesn't work on textboxes. Nor is there a Full Justification choice for the TextAlign property. Is there a way to fully justify a textbox on both right and left edges Or any third-party rich-text controls that could be used on reports to accomplish full justification I already have a column in database with RTF-coded text, as well as a plain text column. Thanks. Alan Refer to my post in this thread http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=738557&SiteID=1 . It contains a walkthrough and class code that will allow you to render rich text in RTF format to an image and display that image in reporting services or wherever els ...Show All

  • SQL Server How do I set up a linked table in MSSQL 2005?

    I am new to SQL Server. I have a fox pro database that is part of a vendor's product. I want to link some of the individual tables in the foxpro database in my SQL database. Can someone point me to a tutorial or example on how to do this Thanks! You can access the foxpro tables using the OPENQUERY function example select * from openquery(LinkedServer, 'Select * from foxprotable') Details on setting up linked server and OPENQUERY documentation can be found at the following link: http://msdn2.microsoft.com/en-us/library/ms188427.aspx Also you can try posting your question in the MSDN Forums Visual FoxPro Visual FoxPro General forum. Thanks Suroor ...Show All

  • Visual Studio 2008 (Pre-release) "OR" in separate calls to Where

    I'm trying to do the equivalent of this in LINQ: StringBuilder q = new StringBuilder("SELECT * FROM customer WHERE city = 'New York'"); if (westCoast) q.Append(" OR city = 'Los Angeles'"); Here's what I have so far: var q = dc.Customer.Where(c => c.City == "New York"); if (westCoast) q.Where(c => c.City == "Los Angeles"); But I end up with "WHERE city = 'New York' AND city = 'Los Angeles'"; How do I tell it to use OR instead, when separate calls to Where are made Thanks!   super_bly wrote: I'm trying to do the equivalent of this in LINQ: StringBuilder q = new StringBuilder("SELECT * FROM customer WHERE city = 'New York'"); ...Show All

  • Gadgets OT: Suggestions about gallery.live.com

    Several things stand out about this site, now that people are starting to use it. So, here's some suggestions: Implement some sort of language filtering. Although I have nothing against the use of non-English and think it's actually commendable than MS allowing it, I would rather filter out Gadgets that are of no use to me. Alternatively allow multiple languages in the Gadget description, or some form of language translation. Improve Gadget images. It would be great if you could attach screenshots, as well as the 100x100 icon. Do something about Gadget spam. "Vamos Strip Player" springs to mind, I'd hate to think how many times it's posted. Remove the 1000 character limit on the description field, and allow it to be rich text ...Show All

  • Visual Studio Express Editions how to Creating a user control

    i want to create my textbox that accept only numeric data as a user control. how can i add textbox events,methods properties in my user control All of these events have protected members whose name starts with "On". You can override them to handle the event before the base control gets it. Or you can just handle the event like you always did before. This example demonstrates both techniques: Imports System.Windows.Forms Public Class NumericTextBox Inherits TextBox Protected Overrides Sub OnGotFocus(ByVal e As System.EventArgs) '--- Select the text so that typing replaces it Me.SelectionStart = 0 Me.SelectionLength = Me.Text.Length MyBase.OnGotFocus(e) End Sub Private Sub NumericTe ...Show All

  • .NET Development - Are there 4 ways to access the current authenticated user or am I misunderstanding the whole idea

    ( I don t think I got the security in ASP.Net anyway) 1- System.Security.Principal.WindowsIdentity.GetCurrent().Name and by using: 2- HttpContext.Current.User.Identity.Name 3- Thread.CurrentPrincipal.Identity.Name 4- System.Web.Security.FormsIdentity So what s, pls, the difference between accessing the current user by using each of the methods listed above and when do we use each of them and why we should use one method and not the other from hose I copied above. Thanks a lot p.s: let me kn ow if i am supposed to post this question somewhere else First of all, it's important to know that .NET allows for various types of "User" entities. The first method you list retrieves the current user for ...Show All

©2008 Software Development Network