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

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

redshock

Member List

Arry
Tailor
usm2000
NetPochi
AndyL
Lluis B
Kamii47
AAtallah
Jack Spade
KFitzgerald
scottt40
TimDeveloper
FrancisEnem
MShetty
RibenaUser
BobP - BIM
Sam Tyson 92
Danny Tuppeny
Ofir Epstein
Hei
Only Title

redshock's Q&A profile

  • .NET Development I want's to make an application which can be sceduled to run at particular time .[what can i do windows service,windows applica]

    I want's to make an application which do particular tasks. It can be sceduled to run at particular time. [what type of application i make can i do windows service,windows application e.t.c I am Going to follow the following approach. Please sugest me is it the right approach http://www.vbdotnetheaven.com/UploadFile/ajifocus/AppScheduler12062006233037PM/AppScheduler.aspx ...Show All

  • SQL Server Service Pack update

    Good morning. Is it necessary to run the service pack (I'm upgrading SQL 2K from SP3a to SP4) on the clients, as well To update any connectivity tools, etc. Thanks. Chris Hi, the most update from SP3a to SP4 where just for the server engine. You don’t necessary need to install that, although it won’t break anything. So it’s up to you. I always installed that on my clients to keep the most current service pack. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Basic The Is Operator and Strings

    Mods: Please move this topic to Visual Basic Language as it fits most there. This is MSDN definition for Is operator: " The Is operator determines if two object references refer to the same object. However, it does not perform value comparisons. If object1 and object2 both refer to the exact same object instance, result is True ; if they do not, result is False." So I expect the followng code snippet to return true and it will: Dim s1 As String , s2 As String s1 = "Omid" s2 = s1 Console.WriteLine(s2 Is s1) But why this one returns true I believe s1 and s2 are different reference variables and point to different memory locations so why the Is operator returns true Dim s1 As String , s2 As St ...Show All

  • Visual Studio Visual Studio 2005 does not embed resources

    Hi! Recently the VS 2005 stopped to embed resources into my WinForms applications which results in System.Resources.MissingManifestResourceException being thrown each time such an application starts. This is queer even more for my friend's VS instance embeds resources just fine. I used the Resourcer to examine generated assemblies and found out none have been embeded. I have also examined projects I have implemented some time ago and saw resources are alright - those applications work just fine, but whenever they are rebuilt their resources vanish out. Exception data: "Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "WindowsApplication3.Form1.resources" was correctly embed ...Show All

  • .NET Development Connection woos ...

    Just the other day I have not been able to connect to SQL Server 2005 Express Edition. NOTHING has changed. All I have noticed is that in the Surface Area Configurator the Local Connections only radio button it selected. So I try selecting the Remote radio button and Apply and Ok and then exit the Surface Area Configurator program and then come back in again and the Local Only is selected. Is this normal behavior Is Remote connections allowed or not How verify Thanks. I restart it! To re-iterate ... All I have noticed is that in the Surface Area Configurator the Local Connections only radio button it selected. So I try selecting the Remote radio button and Apply and Ok and then exit the S ...Show All

  • SQL Server I can't modify userdefinedfunction (not all object)

    I can't modify userdefinedfunction (not all object) . this object create in sql 2000 =================================== Property QuotedIdentifierStatus is not available for UserDefinedFunction '[dbo].[GetFlightStatisticAll]'. This property may not exist for this object, or may not be retrievable due to insufficient access rights. (Microsoft.SqlServer.Smo) ------------------------------ For help, click: http://go.microsoft.com/fwlink ProdName=Microsoft+SQL+Server&ProdVer=9.00.1399.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.PropertyCannotBeRetrievedExceptionText&EvtID=QuotedIdentifierStatus&LinkId=20476 ------------------------------ Program Location: at Microsoft.SqlServer.Management.Smo ...Show All

  • Windows Forms Drag and dropping custom UserControl objects into a panel

    Endgoal: making some sort of graphical math equation editor. Starting point: generating fixed sized blue blocks that are constructed at the mouse's location at the end of a drag and drop from a simple button. Everything works great so far. I've put even handlers in the right places, etc. Except for this: http://s93768914.onlinehome.us/pub/blockcsharp.jpg As you can see, there's a region in the top left which is inaccessible to the viewing of my block objects. I have no idea where it comes from, where it could be defined.  Any ideas I figured a workaround, although I don't understand why I need to do it fully. The objects I create at the end of the dropping are my own class of objects, derived from Us ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How can i adjust SpotLight-Direction

    Hi I habe been writing a car simulation and i put my SpotLight-Direction at the same point of my LookAt but while the car is rotating, the Loght-Direction does n't rotate. Thanks Without any better information (what API, what features - shaders or FixedFunc, etc..) its difficult to say for definite. Chances are that you're not transforming the vectors and/or coordinates properly. Fixed function lighting is defined in world space and won't be affected by other Model->World transforms. Try manually transforming your vectors. hth Jack ...Show All

  • Visual Basic system tray information

    Hi, I am new to Visual Basic. I want to write a application to know what are processes/Services running in system. What i am thinking is if i get system tray information, i can collect all processes/Services from there. Can you please help me how to get system tray information Thanks in Advance Kishore What version of VB are you using What does it say when you put your cursor over the red color Did you make the references to the correct namespaces System.Diagnostics & System.ServiceProcess ...Show All

  • Visual Studio Express Editions Error: Please assist if you can.

    Ok I wanted this single window to open Here is the code: #include <windows.h> // GLOBAL VARIABLES HINSTANCE ic_hInst = NULL; HWND ic_hWnd = NULL; // FORWARD DECLARATIONS HRESULT InitWindow( HINSTANCE hInstance, int nCmdShow ); LRESULT CALLBACK WndProc( HWND, UINT, WPARAM, LPARAM ); // ENTRY-POINT int WINAPI wWinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow ) { if( FAILED( InitWindow( hInstance, nCmdShow ) ) ) return 0; MSG Msg = {0}; while( GetMessage( &Msg, NULL, 0, 0 ) ) { TranslateMessage( &Msg ); DispatchMessage( &Msg ); } return (int)Msg.wParam; } // REGISTER WINDOW CLASS AND CREATE HRESULT InitWindow( HINSTANCE hInstance, int nCmdShow ) { ...Show All

  • SQL Server Transactions - Back to Basics

    Hi all, I am having no end of trouble with transactions in the package which i am building. I now just want to go back to basics and see if someone can tell me where i should set specific transaction options. Firstly, my package runs a for each loop which loops through a directory of directories. In each of the sub directories there are 2 files. The first steps in the loop are to check if a folder has been processed previously, if so then it moves it to a specified directory. The reason that this is done first is that i cannot move the directory whilst it is being read in the foreach loop, so i pass the path to the next iteration of the loop. There is another file system move directory task outwith the foreach loop to deal with the last di ...Show All

  • Visual Studio Express Editions Incremental variable creation..

    Hi all... I'm tryiing to create a variable incremental.. eg: int i = 1; string BEGIN5 = "TE0|1|44|test|12|| |drive|paul" ; char [] SEPARATEUR = { '|' }; string [] words = BEGIN5.Split(SEPARATEUR); foreach ( string s in words) { string TAB1VAR = ( "TAB1VAR" + (i++)); } The result must be this: TAB1VAR 1 ="TE0" TAB1VAR 2 ="1" TAB1VAR 3 ="44" TAB1VAR 4 ="test" TAB1VAR 5 ="12" TAB1VAR 6 ="" TAB1VAR 7 =" " TAB1VAR 8 ="drive" TAB1VAR 9 ="paul" but dont know how to create the TAB1VAR( x ) variables... ;-( ...Show All

  • Visual C# Is there any tool functions as a switch in windows forms?

    Hi,as stated in the subject, I want to know whether there is a control acts as a switch. Just like the one we use to open or close the light... Now I can only use two buttons. Each time only one button is enabled and when user clicks the active one, it will become disabled and the other one will be enabled...However, it is not so intuitionistic and a little bit strange... So does C# or visual studio offers such electrical tools Or I have to draw one by myself Is there any resource supplied for electrical GUI online Thanks a lot! >> you'll have to make or find (at least) two images: THe problem with using images is that your either forced into a fixed size, or the image gets stretched or squeezed to fit the size ...Show All

  • Windows Forms how to make binding to a property of static class

    Hello I want to make a binging to a property if a static class. textBox2.DataBindings.Add(new Binding("Text", StaticClass, "MyProperty")); I get following message Error 1 'WindowsApplication4.StaticClass' is a 'type' but is used like a 'variable' How do i make a reference to a static class Another question is how i make a 2 way connection When i use the instrucion textBox2.DataBindings.Add( new Binding ( "Text" , test, "MyProperty" )); the testBox2.Text is not updated when property is changed. Like with test.MyProperty = "changed" ; Greetings Jan in regards to number 2: it won't automatically ...Show All

  • Visual Basic NEED CODE TO PROVIDE EXACT, LITERAL NAME FROM EXCEL AS VARIABLE

    The following code is for reference. The bold face is the problem. I need to have date1 be in the format of "Nov-06" for this macro. C1 is in the format of "11/26/06" in the Excel spreadsheet but I need to have this in the "mmm-yy" format for this to work - but it uses "11/26/06" even though the cell is formatted and displays correctly as "Nov-06". How do I copy the cell EXACTLY as it is displayed in the spreadsheet the date in C1 changes monthly. Thanks! ________ Sub COPYTOFILE() Windows("Hourly Template Andrusky.xls").Activate Sheets("summary").Copy Range("b1").Select 'Sub Savetofile() Dim strDate1 As String date1 = Range("C1&qu ...Show All

©2008 Software Development Network