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

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

mobigital

Member List

John Dunn
topographicaltales
Jeroen Alblas
acctman
Kolja
Craigster
parivesh
arro239
MarlAtkins
KevinBurton
knikki98
TJ Bernard
who_am_I
Butterflyangel02
Tamil mannan
Chris Aus
ti_m
SK_Rajdev
LPlate
Bernd Omenitsch
Only Title

mobigital's Q&A profile

  • Visual C# How do i find file by time of its creation ??

    hello, i have to create application to check some data from .dat files according to file creation(like online but with 20s delay) so i’m asking if anyone know how to find this kind of file well you can check the file creation time on local computers using the System.IO.FileInfo class: System.IO.FileInfo theFileInfo = new System.IO.FileInfo(" filename.ext "); MessageBox.Show(theFileInfo.CreationTime.ToString()); in regards to on the internet somewhere, either download the file and check the creation date using the code above or perhaps connect to the ftp site and request for the list directory, it may give you a date/time of the file created, im not sure but something to look into ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Dynamically generated XACT projects

    I'll admit that I haven't even investigated whether this is possible or not. Figure I'll start by asking whether it's even feasible, or if there is another technique I should be thinking about. What I'm looking to do will involve dynamically generating .wav files during the build process of certain assets. Since all audio must be pre-processed via XACT, I was wondering if there was some way of programmatically generating an XACT project file, and then building it. Ideally, this will result in audio code that is both dynamic (ie. generated by the content pipeline), and compatible with the XBox 360. Thoughts That sounds feasible to me, although it will certainly involve some work :-) I'm not aware of any docs on the XACT project f ...Show All

  • SQL Server Upgraders: How much did tempdb increase after upgrade?

    I came across a passage in a book stating that the SQL 2005 version of tempdb requires "significantly" more disk space than previous versions of SQL Server. I'd like to have your opinion of how much tempdb space increased as a percentage, and what operations you see using tempdb now that didn't in previous versions I'd like to gauge feedback to estimate future growth needs and general concern. Thanks for any info! Read this Article : http://www.microsoft.com/technet/prodtechnol/sql/2005/workingwithtempdb.mspx Madhu ...Show All

  • Visual Studio 2008 (Pre-release) How to i get a list of server name include local and network

    hi can any1 noe the answer for the subject. thx A problem regarding list of sql server is that If my system is disconnected from LAN then it even cant find Local SQL Server Instance.... Can any one help me... ...Show All

  • SQL Server I can't connect to http://localhost/Reports - rsinternal error

    After a new installation I can't connect to http://localhost/Reports - rsinternal error The logfiles give me the following: (haven't been able to find an answer to this issue) <Header> <Product>Microsoft SQL Server Reporting Services Version 8.00.1038.00</Product> <Locale>en-US</Locale> <TimeZone>W. Europe Daylight Time</TimeZone> <Path>C:\Program Files\Microsoft SQL Server\MSSQL\Reporting Services\LogFiles\ReportServer__07_28_2006_11_27_56.log</Path> <SystemName>BUIS8907-6</SystemName> <OSName>Microsoft Windows NT 5.1.2600.0</OSName> <OSVersion>5.1.2600.0</OSVersion> </Header> aspnet_wp!webserver!b0c!7/28/2006-1 ...Show All

  • SharePoint Products and Technologies Adding "Person Column" to a list

    I may be barking up the wrong tree but thought I would throw it out there. Using MOSS and the BDC, we have the capability to add Business Data as columns in a list. How would I go about creating a "People" type in my BDC that pulls the data from the user profiles in MOSS What I would like to do is have a drop down or search screen for selecting a person from the profile store instead of keying the information into a contact list and then having the information be out of date , etc... It would be much easier to just allow them to select a person and pull the data from there. They would also get the "Presense" pawn next the persons name etc.. which would be very useful. Does this sound possible Has anyone done th ...Show All

  • Visual FoxPro msxml3.dll error when using XMLTOCUROSR()

    When using the XMLTOCURSOR() function in version 9, I receive the follow message [msxml3.dll : The system cannot locate the specified object ]. Steps taken include uninstalling VFP9 and reinstalling both 7 and 9 and installing the service pack and registering the dll separately. The code works fine in version 7 but not in 9; Test Code lcxmlalias = 'xmlalias' lcfilename = 'c:\indir\pfpcxmlfile2.xml' XMLTOCURSOR ('c:\indir\pfpcxmlfile2.xml',lcXMLAlias,512) Anyone encountered this issue. any ides would be helpful Attempted registering DLL and various version through to xml 6.0 and still receiving error. Attempt same on different workstation in standalone environment still receiving error. ...Show All

  • Visual C++ LNK2001: using unmanangedC++ in manC++

    Hi, i'm writing a new user-interface for a small software-company. The old interface should be replaced by the new one, the "inner core" should stay. The old program was written in unmanaged C++, but now I'm writing the user-interface in C#, so I have to use class wrappers. While building the managed C++-project (in a solution with the unman. C++-projects) there a some errors. For example: Error error LNK2001: unresolved external symbol ___argv nafxcwd.lib and Error error LNK2001: unresolved external symbol ___argc nafxcwd.lib Another one: Error error LNK2001: unresolved external symbol __pgmptr db.lib [db is one of the old unmanaged C++-projects] The settings are the following: Linker->Input->Add. Dep ...Show All

  • Visual C# Object reference confusion.

    I have a simple function located in Class2.cs - an auxiliary file for Form1.cs (Console Application in VS2005). It take one parameter: string. This string is supposed to serve as a switch for selecting the right string to build. public string getConnStrings ( ref string switched ) In the calling function I call the function in question as: string switched = "1"; string str1 = Class2.getConnStrings (switched); // or (ref switched); I get this error: Error 1 An object reference is required for the nonstatic field, method, or property 'tapTCPports_1.Class2.getConnStrings(ref string)' D:\VCsharp_Projects\tapTCPports_1\Form1.cs 1231 21 tapTCPports_1 When I placed the function getConnStrings into the ...Show All

  • Visual Studio Express Editions help with telnet client

    hi, i want to make a telnet client so far all i have is the code to "connect" tcpClient = New TcpClient tcpClient.Connect(Login.TextBox1.Text, " " & Login.TextBox2.Text)   what i need to know is how to send commands to the seerver im connected to e.g. i type "help" in textbox1, it sends it to the server, and shows the returned text in textbox2. so i would type "help" in textbox1, click a button, and have all of the "help" text that comes up would be in textbox2 this is the most difficult thing i have ever done in Microsoft visual studio 2005 express edition so i neeed lots of help so please help me! i cant download the dll from the first link coz the link dosnt ...Show All

  • Windows Forms deploy nonav uninstall silently

    ok Geniuses, i want to create a program that uninstalls silently For example, there is a program out there called nonav which uninstalls symantec antivirus completely however there are prompts in that program which i want to take away, and have it take the default prompts anyone know where i can begin Thanks There are instructions for doing both halves of what you are talking about (upgrading enterprise versions of SAV) at http://www.sharpebusinesssolutions.com/savce_upgrade.htm . This information seems to be pretty hard to come by for some reason. Symantec seems to refuse to provide support for recent versions of SAV 10, but makes it exceedingly difficult to upgrade large populations of machines reliably. The i ...Show All

  • Windows Live Developer Forums Photo upload tool please start working in my space !!

    hi.. this is my first post here, and i hope i'll get a beneficial answer from anyone. u see i've got a space in MSN and when i tried adding photos a window poped up and asked me to accept installing Photo upload tool inorder to have the ability to upload pictures to my space. I did install that program and it works well in hotmail when choosing to attach pictures but the problem is in my space. Whenever i try to add a photo, the same old window that asked me to install the tool pops up but it looks blank without any thing, it just blinks every almost 5 seconds. I thought it might need time to appear but i've waited forever and it's still balnky blinky !!! Any bright brains around !!!! am in Microsoft's site .. so i thin ...Show All

  • Visual Studio Express Editions IE5.01 or later not detected

    Hello, I am having the hardest time getting any version of .net installed on my notebook. It had IE 6.0 and wouldn't install so I upgraded to IE 7 and it still thinks that IE5.01 or later is not present. Any suggestions on what can be done Have you tried installing from the manual downloads to see if that fixes your issue http://msdn.microsoft.com/vstudio/express/support/install/default.aspx ...Show All

  • Visual Studio 2008 (Pre-release) How to get ObjectAnimationUsingKeyFrames to work programmatically

    Hi everyone... For learning purposes I'm playing around with animation. One thing I can't get for the life of me to work is ObjectAnimationUsingKeyFrames. This should be relatively simple so I'm probably missing something. In the following code I'm simply trying to make a Storyboard that hides an "element" (which can be any FrameworkElement) after one second by updating its Visibility property. However it will not work. Any idea what I'm doing wrong I've only seen examples of keyframes in XAML but I believe I'm doing the same sort of things as all those. Help is appreciated! --- // Create the storyboard Storyboard storyboard = new Storyboard(); // Add keyframe to turn off from element visibility ObjectAnimationUsingKeyFrame ...Show All

  • Visual Studio Setting a color on a report.

    Hi Folks. I have a report where I print some product items, every product item has color value(like: 000000). Besides the products name I would like have a litle square that is filled with the color from the color value field in the database. How could this be achived Cheers Add a rectangle next to the product item (e.g. if you use a table layout, put the rectangle into a column besides the product information). Then, on the rectangle specify the background color as an expression. Let's assume you have a dataset field called ProductColor that contains the color value as a string (e.g. "000000"), you would use the following expression: ="#" & Fields!ProductColor.Value Note: thi ...Show All

©2008 Software Development Network