Search results for query: *

  1. S

    command line arguments

    still shining cjard! thanks
  2. S

    IComparable help

    hi all, i have 4 classes : Maze : -has an arraylist of rooms object Room: -name -size -has an array list of of doors object Door: -direction TestMaze: - a class to execute the Maze. in class TestMaze, i wana be able to return a sorted list of doors, so questions: 1.do i implemet the...
  3. S

    command line arguments

    Hi all, just a quick basic question, how do we obtain multiple argument from the console ? for example to input a string from the console into my vb.net programe, i simply use str = console.readline() , but what if you want to input 2 argument as the following: fred M 25 ? i wana be able to...
  4. S

    Access VBA DataGrid problem!!

    I'm trying to build a small reservation system using only Ms access and VBA. at the moment, i built a search functionality in the system that allows people to search for specific flights using VBA coding.. im trying to view the search results in some sorta of dynamic data grid structure...
  5. S

    position of chars..

    that will display the chars in the string and not the position of each chars in the string...isnt ?
  6. S

    determine if a devision result in a reminder

    how to check if the result of a/b will have a reminder or not ??? i simply want a way to check if chars in a specific string at odd or even position !! so im trying ' if Cint(string(i)%2) = 0 then 'do some thing.. any ideas? thanks ..
  7. S

    substring

    doesnt that work out at the end to be the same thing ? - the start index will always be the same . - the end index(the length i.e. the size from the start till the end) do you agree ?? it's a bit confusing but in my case it worked exactely the same!!!
  8. S

    string.equals("..").ignorecase?

    sweet.. thanks !
  9. S

    substring

    thank you all :) problem solved
  10. S

    position of chars..

    how do i specify the index of a char in a string.. dim s as string = "12345mmm" how do i break such a string into chars and get the position of each char within the string ? thanks.. signo.x
  11. S

    substring

    dim s as string = "123456" is there any way where i can specify the start and end index of the string to be displayed? for example .. if i use s.substring(0,3) will display the chars 1 2 3, but how can i do the same thing by specifying a start and end index of the string to be displayed...
  12. S

    string.equals("..").ignorecase?

    is there such a method in vb.net to be used along with the .equals() to compare if a string equals to another one ignoring the case? like in java.. str.equal("tt").ignorecase() ?? ~signo.X
  13. S

    vs.net 2005 solution to 2003 error ???

    where are my third library files stored and where do i copy them ? along with the .exe file ?
  14. S

    excel object late binding

    Thanks JohnH :)
  15. S

    excel object late binding

    but it gives me errors when i try to use some of the Excel.chart properties.. e.g. 'select chart type oChart.ChartType = XlChartType.xlColumnClustered how do i fix that ?
  16. S

    new reference library to old refrence lib??

    Thanks , any idea how can i fix this ? it doesnt recognise some of the properties that's supported by the Excel.chart obejct... how to i fix this poblem ? and how do i know what other peoperties/functions that is compatible with that late binding ?
  17. S

    excel object late binding

    when using late binding to manipulate an excel document , do i need to add a reference to the library ' 'MS Excel object library 11.0' in my project ? ~signo.X:confused:
  18. S

    new reference library to old refrence lib??

    Thanks John , that really helped,. one more question regarding the late binding , i dont have a problem to do the following .. : but when it come to declaring excel charts as object and try to use thier properties or methods..i CANOT do the following : that happenes basically cuz im...
  19. S

    .INI Files??

    Thanks ARKETTE.. never knew such a namespace exist..i'll have a look at it on the msdn.. !signo.X
  20. S

    new reference library to old refrence lib??

    ok, i'll try that .. i hope it works though.. Thanks..what a day full of frustration after i thought i completed my first .NET project.. thats why ... java and only java..is always my first personal choice when it comes to developing softwares.. :(
Back
Top