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

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

BiGAlex

Member List

vsone
mycall
phore
CiaranODonnell
cnminor
robcw
Bhagvat
DeathByNukes
Ivan Radley
ruvyzzang
Cybersurfer
Brad Rhodes
JPR7
??
fhunter
-Matthew-
sajmons
EricTN
Charles Race
AlanSweet
Only Title

BiGAlex's Q&A profile

  • Visual Studio Express Editions Icons for my Application????

    HI all., I'm Back due to the spedd and accuracy of the help I received with my last question! This may seem obivious or silly to some- but how do I control what icon windows uses for my application when veiwed in an explorer window Is this even do-able in VC++ Exp Ed I've tried the form icon field in Designer, but that only seems to set the icon for the taskbar. Again, any help would be greatly appreciated. Cherrs DT. If you created the project from the templates, they will have created a file called app.ico (or possibly <app>.ico) in your directory. That's your application ...Show All

  • Visual C# Thread | Invoke Issue

    I am stumped on this. Here is my scenerio. >> = creates >: = event kicked off Class A >> Class B >> Class C Class A >> Class D When Class C creates a graphic object , alert Class A to tell Class D to reset all its data. Class C >: Class B >: Class A Class A has this code: private void Feature_DataChanged( object sender, EventArgs e) { ImageHandler image = ( ImageHandler )sender; m_associationview.SetAssociation(image.Text); } m_associationview is the object that created Class D in Class A's constructor. SetAssociation is a method in Class D. Feature ...Show All

  • Visual Studio Team System Team Build Problem

    I have a solution that has three projects in it. Two Class libraries and one windows application. Everything builds find on my local machine. When I first tried to do a team build it gave me a ton of assembly reference errors (mostly from infragistics references) so I rebuilt my solution and included the "bin" directory for all 3 projects in source control. Now when it builds those errors are gone but in my Windows App i get these errors: Solution: SPMS-SilverAnvil.sln, Project: SPMSWin.csproj, Compilation errors and warnings ActionForms\frmActionEdit.cs(8,7): error CS0246: The type or namespace name 'SilverAnvil' could not be found (are ...Show All

  • Visual C# DateSerial Value

    hi! i can easily get the DateSerial Value on Excel VBA. like this, Format(Date, "0") then, how to get the DateSerial value on C# and is this useful to use it on C#. You can use DateTime in C# Say, for example if you want to print out the current date you can do, Console.WriteLine(DateTime.Now.ToShortDateString());   If you want to print out the current time, you can do Console.WriteLine(DateTime.Now.ToShortTimeString());   If you want more complex formatting, lookup DateTime Formatting in MSDN. ...Show All

  • Visual Studio Express Editions downloading a new page

    I'm writing a basic demonstrator that takes a Windows forms application and converts it to a web solution using the Visual Web developer. I've treated each form as a new aspx page and I want to simply download to the user browser a new page in response to a button click. I've searched the help files but I can't find the command syntak. It must be simple because the menu and tree command coupled with a site map does, but they don't quite fit the bill. Any help would be appreachiated. Ken Thanks for the answer, It's a new area for me so my appologies for using the wrong forum Ken ...Show All

  • Visual C++ Not able to print Unicode Characters on Command Prompt

    Hi, I want to display unicode strings on the command prompt. I am using following code: TCHAR szTemp[50]; NLSLoadString(hInstNLSDll, ID_USAGE_2, szTemp, sizeof(szTemp)/ sizeof(szTemp)); _tprintf(_T("%s\n"), szTemp); NLSLoadString loads the string ID_USAGE_2 into szTemp. But it prints nothing from first unicode characters :( It prints the string before first unicode character w/o any problem. I changed the locale also accordingly. Please help me out... Is there any other option Thanks a lot in advance... try printf("%S\n", szTemp); Use the capital S, if you want printf t ...Show All

  • SQL Server Upgrading from SQL 2000 to SQL 2005 in Storage Area Environment (SAN)

    Here is my question when we upgrade how does it work, does it upgrade in the SAN environment across the disk or only it upgrade in the D:\ I mean when we upgrade/Install SQL 2005 we don’t point to all the different drive letters, we only point to default drive either C:\ or D:\. Does it only upgrade where the databases located default drive ( D:\) If so we loose the data Or After upgrade do we need to do detach and attach databases. Note: Currently databases are assigned to different drive letters across the disk If you could suggest us that would be great You only tell the installer where your SQL binaries were/ ...Show All

  • Visual C++ Re-engineering

    Hello, I haven't been able to find any information on what kind of (mainly legacy C and C++ code) re-engineering support exists in Visual Studio 2005. Is there any and if there is, where can I find more information on it I mean features like (1) creating diagrams and architecture documentation according to dependencies (function calls, macro calls, class hierarchies/associations, include file hierarchies, directory structure, ...) in existing code, (2) manually adding new groupings in these diagrams (e.g. grouping some functions together in the diagram for visualizing possible new module structures),  (3) generating and brows ...Show All

  • .NET Development How to encrypt messages without X509?

    I need implement custom security with WSE 3. I wish to implement following scheme: 1. User enters name and password. 2. Application sends user's name and password to security web service. 3. Security web service authenticates user against database. 4. Security web service sends back user's identifier (from database) to application. 5. Application sends user's identifier to other web services to autorize user. I have some ideas about implementation: 1. I need encryption for all messages. 2. I don't want use X509 tokens for encryption. 3. I want use symmetric algorithm for encryption. 4. I don't want pass user's identifier to every m ...Show All

  • Smart Device Development OpennetCF PictureBoxEx control? OutOfMemoryException

    Hi All, Recently, I use two picture box control from OpennetCF. What happen is, during loading data phase (display using standard ProgressBar) of my application...SOMETIMES, it throws OutOfMemoryException eventhough I still have a lot of room for memory. I SUSPECT that the problem is being caused by those two new picture box. I ever got the same problem before, but, it's not happening again after i remove the picture box from Opennet. Until, I use it again two days ago. The reason I'm using it is because the standard picture box doesn't have click event. My question is, have anyone ever experienced the same problem with those pic ...Show All

  • .NET Development ADO 2.0 DataRelations with Typed Datasets - Foreign Key Constraint

    I am using the NorthWind database as an exemple. I created a dataset by dragging the Orders and Order Details tables in a dataset with VS2005. I have set the relation FK_Order_Details_Orders to Both Relation and Foreign Key Constraints and the Delete and Update rules to Cascade. If I delete a row from the Orders table and then call the Adapter.Update method on the Orders datatable I am getting a foreign key contraints exception. DELETE statement conflicted with COLUMN REFERENCE constraint 'FK_Order_Details_Orders'. The conflict occurred in database 'Northwind', table 'Order Details', column 'OrderID'. The statement has been terminat ...Show All

  • .NET Development Issue with XmlWriter/XmlTextWriter.

    Hi, I have a piece of code as below: static void Main(string[] args) { XmlTextWriter tw = new XmlTextWriter("c:\\tw.xml", Encoding.UTF8); string Text = "<Script><![CDATA[int i=0; if (i < 0) i = 0; ]]></Script>"; tw.WriteElementString("Text", Text); tw.Close(); } I am trying to output the string Text to a xml file. The string self has CDATA in it. I assume the contents within CDATA section will not be touched. However, the output I got is: <Text>&lt;Script&gt;&lt;![CDATA[int i=0; if (i &lt; 0) i = 0; ]]&gt;&lt;/Scr ...Show All

  • Windows Forms How to use BindingSource.Find method???

    How to use BindingSource.Find method I want to use BindingSource.Find to find the data. I am working on a project where the DataSource has multiple tables. I want to find a record when the user selects a Company Name from a combo box. Using the combo box SelectedIndexChanged event, I was able to locate records by accessing the ColumnName property of the table that contains the information I want to find: Dim pos As Integer pos = AccountBindingNavigator.BindingSource.Find(DsAccountData.Tables(0).Columns(0).ColumnName, cboCustomerList.Text) AccountBindingSource.Position = pos My bound controls aut ...Show All

  • Visual C++ Debug Assertion Failed

    Hi I have just got our main C appilcation which was developed under Visual Studio .Net 2003 ported/compiled/run successfuly as a release build under Visual Studio 2005. However when I try to run the debug build I get the following: Debug Assertion Failed Program : myapp.exe File : f:\rtm\vctools\crt_bld\self_x86\crt\fstat64.c Line 64 Expression (_osfile(fildes)&FOPEN) I have degugged it to the following function and the fstat call within it: int get_file_size( char *filename) { int fh; struct stat info; fh=open(filename,_O_RDONLY); if (fh==-1) { error_handler(10,TXTOPE, "" ); re ...Show All

  • Smart Device Development Unable to Edit Outlook Mobile contact using .net compact framework

    Hi, Whenever I try to remove or edit and update a contact in pocket outlook using .net compact framework I get the following error.. Error: ============== System.InvalidOperationException was unhandled Message="Can't modify the item collection inside a foreach statement" StackTrace: at PimItemCollectionEnumerator.collection_ListChanged() at Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.RemoveAt() at EqualizerLibrary.Util.SetGroupInOutlook() at EqualizerUI.MyGroupsForm.mitChangeGroup_Click() at System.Windows.Forms.MenuItem.OnClick() at System.Windows.Forms.Menu.ProcessMnuProc() at ...Show All

©2008 Software Development Network