Software Development Network Logo
  • Visual C++
  • Visual Studio
  • SQL Server
  • Visual C#
  • Visual FoxPro
  • Windows Live
  • Windows Forms
  • Game Technologies
  • VS Express Editions
  • Visual J#
  • Microsoft ISV
  • Smart Device
  • Architecture
  • Windows Vista
  • .NET Development

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

Tiadd4

Member List

Jay Frankland
edvo
JRCJames
RPKJBP
James Lin
Pilot_cir
David_VA
AnhTinLove
jmckown
JOHNJ_GM
Rich Cyc
Zeeshan8260
Dave Shaw
mrjunaid21
DeepsR
DmitryB
Sebastian Dev
AussieGuy
Jorge Lopez
andystac
Only Title

Tiadd4's Q&A profile

  • Smart Device Development Memory (Emulating SD card)

    I wanted to install a program on my emulated Pocket PC, but the program told me I had insufficient memory. Is it possible to emulate an SD card or to emulate more memory than "normal"PDA's Thanks in advance, DJGIzbo Thank you so much. I had the same problem. Have been trying to emulate a pda, but (palm as well) but couldn't find a simple solution to get lot's of storage. Thx Marcel ...Show All

  • SQL Server System Catalogue

    Hi I am new to database design and SQL server and am looking for some information on the systems catalogue.  Can anyone tell me where I would find a list of the type of information held in the systems catalogue and if this information is held in the format of a database itself does SQL Server have specific/recommended names for the tables Thanks in advance. I'm assuming you're using SQL Server 2000   In SQL Server Books Online (SQL Server's help file), you can find information on two types of system catalogs in SQL Server:   A) Look up the INFORMATION_SCH ...Show All

  • Visual C++ how to read exe file

    Hi all I have a problem. i have situation where i need to send a complete C program made in .net 2003 to another pc using socket. Now rather than sending individual files CPP and .h files(since there can be more than 2 or 3 files), i deicded to make an exe file and then send exe file to other pc. Now i am able to create the exe file but i am not able to read it using c++ file handling. here is the code #include<iostream> #include<fstream> using namespace std; void main() { ofstream fout; ifstream fin; char c[20]=" "; fout.open("C:\\sample1234.exe",ios::ate); fin.open("C:\\ ...Show All

  • Windows Forms Typed dataset in separate project

    I started to ask about this in another thread, but it was in the wrong forum, so I'll ask here: I was able to add a datasource to a class library project, then reference that datasource via a windows forms project, but I was unable to successfully drag and drop a table on to a form. All the necessary controls were created for a databound form *except* the tableadapter (no error messages or anything). When I created the same datasource from scratch inside the windows project and drag/dropped the same table, everything worked fine. Any particular reason for this I'm using VB (2005). The gist of it is, I want to keep my data access code in ...Show All

  • Visual Studio 2008 (Pre-release) WPF DataTrigger and Enums?

    I'm using DataTrigger in that way: < DataTrigger Binding = " {Binding Path=Source} " Value = " 1 " > < Setter TargetName = " tbSource " Property = " Foreground " Value = " Red " /> </ DataTrigger > But what do I have to use as value when my Binding Source is an Enum I tried its name e.g. AvalonApplication1.Status.Online and its value 0,1,2 a.s.o. but nothing worked :( Any hint for me This is how you would use an enum in a DataTrigger: < DataTrigger Binding = " {Binding} " >    < DataTrigger.Value >       < local:TShirtSizes > Medium < ...Show All

  • Visual Studio Express Editions Treeview question #4

    Hi Back again. This question is typed boolean :) I had problems when I click on the last node of a branch in treeview. This would invariably cause an 'Object reference not set to an instance of an object.' error. To solve this, I wrapped the offending code in an 'Try...Catch exception' = No more of those errors. Question: Is doing this a 'cop out' If answer = True then why I had tried a number of other 'traps' to avoid the offending code being executed, but all those attempts were trying to use aspects of the same variable(s) etc which also caused exceptions. Having your code in a try catch block is always a good idea ...Show All

  • Windows Forms Stop user from selecting another item in ListView

    Is there anyone that knows how to stop the ListView from changing the current selection state. On the Form class you can stop the form from closing by using the FormClosing event.  See the code below: private void SupportCallMonitorForm_FormClosing( object sender, FormClosingEventArgs e) {     e.Cancel = true; } Is there something similar on the ListView for item selection changes No, there isn't.  You would have to extend the ListView and it's selection change related events and event args to implement this.  An easier approach is to ignore mouse clicks and navig ...Show All

  • Smart Device Development use a C# dll with ActiveX

    I would like to know it is possible to convert a C# dll to a COM dll so that i could use it on a pocket PC Active X page: Example: <script language="javascript"> var obj1 = new ActiveXObject("MyPocketPC.Class1"); alert (obj1.helloWorld()); </script> I know that this works if it is a COM dll (C++) but i need to do it with a C++ dll. I know this works on a desktop PC by using: (Generating the DLL .NET FILE) csc /t:library AxComp.cs (Converting to a COM dll) regasm AxComp.dll /tlb:AxCompNet.dll /codebase but i cannot do "regasm" on a pocket PC. Thanks for any comments you might h ...Show All

  • Visual C++ How to work on the same project from different machines??

    Dear All, I am new to Visual C++ 2005 express edition. Recently, I and my team, started developing a project on the mentioned IDE and we are facing difficulties when we combine files together. So is there a way by keeping the source code on a server and all the team members can access the same project from their clients using Visual C++ 2005 Express Edition IDE for the developing. Your help is much appreciated Regards Bassam HI, You can use Microsoft Visual SourceSafe. Install Microsoft Visual SourceSafe on the server. Open your project goto file>source control>Add Solution to so ...Show All

  • Windows Forms How to set version to dll in .net 2.0

    Hii All, we have develped a application in .net 2.0 and we have to deliver the dll to our client. The dll version we are getting, is 0.0.0.0 and we have to change this.. to 0.0.0.1 and subsequent. and i m unable to do so... Actually this is a webservice so we are not using assembly.info file., that's why we can't give version by ourside.. I got one another way to do so.. that is. <startup> <requiredRuntime imageVersion="v1.0.3705" version="v1.0.3705" /> </startup> but as per my knowledge, this may change the runtime version of the application, t ...Show All

  • Visual C# How can I use MS Word's syntax checking feature?

    I'm programming in C#. I need a function that get string as input and result in whether that string is in correct English syntax or not ,like It has in MS Word(MS word will underline the text that isn't in correct syntax). Thank you, You can build up your own library, but you can also use the Spellcheck of Word. Check these articles at codeproject: Spellcheck.net NetSpell - Spell Checker for .NET ...Show All

  • .NET Development webservice architecture help

    I need help with the architecture developing mywebservice. I want a webservice where the clients can send data to each other. How will the architecture look like Is that possilble Like you have a webservice where clients connect. And a client can connect to the webservice and send text to another client. without having each client polling if some data are for them This is like a service client applikation but with a webservice in the middle =) Why I wan’t the webservice in the middle and everybody to be clients is becouse I don’t wan’t the clients to run IIS (webserver) and so on, just a clean win form application. Like a webservice ch ...Show All

  • SQL Server help with a scalare function

    i wrote a scalare function- select name,id from tableName where function1(id) / function2(id)>100 but sometimes function2 returns zero so im getting a divide by zero exception. how can i solve this problem thanks in advanced. It depends on what do you want for output if function2 returns 0... Here's one way to handle it (return nothing):     select name,id from tableName where     case function2(id)     when 0 then 0     else function1(id) / function2(id)     end & ...Show All

  • SQL Server SELECT INTO OUTFILE?

    Hi, how do I redirect the output from a SELECT to a text-file, or Excel-file It is possible in MySQL, but what about Transact-SQL Thanks YOu have to use the OPENDATASOURCE method or a linked server to insert data in another destination than the local SQL Server. More information (including a sample can be found in the BOL) HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Team System Can/Will beta 2 SCC/WI data be preserved in the GA release

    OK, we're interested in starting to use beta 2 for our next big project, however I need to know if the data we create using beta 2 can be preserved (or at least migrated) in the GA release Does the "go live" license apply to TFS too Dave We haven't been dogfooding it for 2+ year - It's been about 8 months :)  A converter from SourceSafe has been planned from the beginning as you suggest and is available in the Beta. The issue of migrating from build to build has been on the radar for a long time - it's just that it's a tricky problem to solve while the schema is still so much in flux (and it was at the time we snapped the sou ...Show All

©2008 Software Development Network