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

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

swan_sgp

Member List

mertkan65
Worf
chakravarthy_b
Sanjukta
streetpc
skyway1217
barkingdog
Misiacik7
Oliver 123
Ganesh sethuraman
ArcSend
katgreen
deji101
phil schmidt
KervyChoa
sandeepbhawsar
ChitownDotNet
Mazzica
Bigmo
mamatham
Only Title

swan_sgp's Q&A profile

  • Visual C++ Constructors for global variables are not called???

    I have a VC++ project B that is linked into a static library "B.lib". This library is linked into project A which creates A.exe. The constructors for the global varaiables in B do not get called. 1. If I have golbal variables in A then there is no problem - the constructors for those get called. 2. I f the solution (Project A and B) get linked on my coleagues computer then there is no problem. 3. The whole soltion is shared between us via rational clearcase so we have the same sources and the same project files. - so it must be one of the flags of visual studio - but which Thanks, D. dannyg View Public Profile Find all posts by dannyg Add dannyg to Your Buddy List ...Show All

  • Visual Studio Team System Setting for URL in Reporting services

    Hello, When viewing the project portal and drilling down into the Work Items report, the ID links href is not showing the fully qualified URL. It links to: http:<servername>:8080/WorkItemTracking/Workitem.aspx artifactMoniker=xxx instead of http:<servername>.ucr.edu:8080/WorkItemTracking/Workitem.aspx artifactMoniker=xxx I have looked all over the server in XML and config files, Sharepoint and Report Server configuration, the database tables, and in the registry, but can't find where this value is being set. I have run TFSAdminUtil activateat, and that hasn't fixed it. Does anyone know where else I can look Thanks, James Hi James, The URL you are talking ...Show All

  • Visual Studio Team System What Will Happen if a stored procedure is called from defferent client at same instance.

    Can you please tell me What Will Happen if a stored procedure is called from defferent client at same instance. If you mean just calling a stored procedure, that should be no problem. If the procedure has to be recompiled it will be shortly locked, but the procedure can be executed by sereral people at the same time. HTH, jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • SQL Server SQL log files - Benefits and Need for multiple

    Hi, When do we need to have multiple log files for one Database. What performance counters should I measure before deciding to go for multiple log files. Any comments / suggestions are welcome. Thanks, Loonysan Hi there... Transaction log can only write to one file at a given point in time. So, you would not gain on the performance side by having multiple log files (as oppose to multiple data files). You may need to create multiple files if you have space limitations, otherwise I cannot think of a reason. Hope it helps.. ...Show All

  • Visual C# DateTime problem (julian date system)

    For example : payments have been paid every 12 days since 10/01/1981. I need to know the date of a certain fifth payment from that date In foxpro, I can use sys(11,date()) to produce a number of days in a form of integer (meaning how many days from year 0) How about in C#, can anybody help me out. I can use the "addday" but it wont be practical. I can only get a date from a text box to determine whether it is the fifth payment. Thanks, william By using the example below you still use the AddDays method, but with the values defined with variables. You can then easily use for example: amountOfPayments = TextBox1.Text Make sure you validate the user's input from the textbox, though. // Define the start date ...Show All

  • SQL Server Grouping my months in a chart

    Hi I'm trying to create a chart with monthly comparisons, but when i throw my months into the chart it groups them under one another instead of next to one another. Please Help!! Kind regards Carel Greaves I came right again, thanks. All i did was create a column that had all months_names in, instead of 4 columns with a single month_name ...Show All

  • Visual FoxPro Tiff files

    Hi gurus I am very new to VFP, so go easy on me. I would like to create a tiff file from a report, I dont want to view the tiff file or to open the tiff file once created, once the report runs, I just want to be able to give it a name and to save it on a folder as a tiff file. Can some help me with some code that I can see and learn or point me to the right direction or let me know where can I find some help on this matter. Thanks a bunch gurus OHHH.- VFP9 almost forget Thanks again gurus Or you may find at: http://msdn2.microsoft.com/en-gb/library/ms967329(VS.80).aspx ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Tool for auto HLSL Generation?

    Are there any tools out there to enable the graphical building of a shader network, such as in Autodesk Maya's Hypershade tool or Softimage XSI's RenderTree tool, which can enable you to use a GUI to set up an object's basic material properties and then automatically generate the appropriate HLSL shader fragments needed to reproduce the material effect in your game without having to manually write HLSL files Certainly, if you want to create complex shader effects, you would need to be able to edit the HLSL or manually create new custom HLSL files, but for creating HLSL files to render basic, standard material properties, there really should be a graphical tool to take some of the work and difficulty out of it. Such a tool should allo ...Show All

  • Visual C++ Registry RegQueryKeyEx

    Hey, I have recenly begun using the Win32 API on XP pro. I need to read the value of a registry key(data value is a file location or string in REG_SZ format) As i am not too familiar with data types and how to convert them I am stuck at getting this string(Using RegQueryKeyEx) and then converting it from LPBYTE to LPCSTR to display in the MessageBox function. The function definition says something about a buffer, im lost. Thanks Sorry, a missing * in that would-be pointer declaration. That's what I get from relying on my built-in compiler I've updated the previous post now. ...Show All

  • Windows Forms Deployment Error

    Hi, I have create on setup and deployment project.In my case i have to read a string from newly added dialog and updates the configuration file in the target computer.I had achieve this by using User interface editor and custom actions editor. Now while running the setup, if i give the string without space (For example "testinstallation") in dialog window,its updated configuration file in the target machine. But if any space in the string(For example "test installation"). It showing error " System.IO.FilenotfoundException:Could not load file or assembly 'file:///C:WINNT\System32\STRING' or one of its dependencies.The System cannot find the file specified " Thanks in advance, Regards Nataraj.C ...Show All

  • Windows Forms User interface question

    Hi all, I'm building a software which has a UI similar as outlook 2003. The problem I'm facing is how can I perform dynamic content change while the user click the navigation buttons. I did think about using MDI but that is not what I want as it obviously not how the outlook implement. Thus, i think about using panels and swap between them. However, it seems very hard to design as i need to cover a new panel to the previous one. It anyone can tell me how outlook implement the dynamic content change thxs alot. Hi JRQ, What you said does make sense to me but can you provide some exmple about how to actually implement that because I'm still confuse about how to implement custom view. ...Show All

  • Visual Basic Opening File in textbox

    How would I open a file selected in an openfile dialog in a richtext box Thank You! thegodfather9210 wrote: How would I open a file selected in an openfile dialog in a richtext box Thank You! I believe that the RichTextBox has a .LoadFile (or similar) method. You can use that to load the file... As for the OpenFile dialog, I assume you already know how to do that ...Show All

  • Visual FoxPro One works only when other not touched?

    Hi, In single Table form there are "Report & Invoice" command buttons. The problem is if "Report" execute once "Invoice" won't do anything and vise versa. Also Is there any command that will preview the report in maximized size instead of clicking it every-time   "Report" command button code is: REPORT FORM monthly.FRX PREVIEW   "Invoice" command button  code is: REPORT FORM invoice NEXT 1 TO PRINTER preview   Any help well greatly apprecite, Thanks Thank you cetinBasoz. I try the following and it didn't work. SELECT invoice FROM "c:\documents and settings\visual foxpro projects\invoice.frx ...Show All

  • Software Development for Windows Vista Was solved

    I created .crd for X509 certificate (using hex thumbprint) but failed to use it to authenticate getting error message box "The certificate associated with this card could not be found" and nothing in event log. The certificate seems properly trusted, has corresponding private key, located in CurrentUser/Personal (in LocalMachine/Personal too) keystore and can be found by >findprivatekey.exe My CurrentUser -t "d47de657fa4902555902cb7f0edd2ba9b05debb8" that was shipped with some of Cardspace sample STSs' So the questions are: 1. Am I doing something wrong 2. Is there some possibility (in present version of .Net3) to do it without SmartCard hardware (maybe some option or tool/emu for testing) 3. What the requirements to SmartCard hardware ...Show All

  • .NET Development .NET Compact Framework install HELP

    I am trying to install the .NET COMPACT framework on my PPC-6700 smart phone with windows mobile 5.0. When I put the .msi installer file on my phone and try to run it I get an error that says: " There is no application associated with NETCFSetupv2. Run the application first, then open this file from within the application." I can open .cab files on my phone, but for some reason I cannot open this .msi file. Could anyone please help me out Thank you Hi, I have a interesting problem. I downloaded this MSI and double clicked it. It says, your machine has already has CF installed. This came into my laptop as I installed visual studio. Now , how do I install this on to the mobile which i ...Show All

©2008 Software Development Network